I want to insert "http//" link with comma-separated in database in this form are:
https://stackoverflow.com/questions/ask,
https://stackoverflow.com/questions/ask,
https://stackoverflow.com/questions/ask,
That is my insert query
$url = array($_REQUEST[url_name]);
$arr = implode(',', $url);
mysql_query("insert into url(url_name)values('$arr')");
How is it possible with an http
link save in database with comma-separated?