Suppose I have a php loop as follows:
while($row = mysql_fetch_array($result)){
$phones = $row['phone'];
$text = $row['message'];
$url = 'http://abcwebsite.com/user.php? '&mobileno=' . $phones . '&message=' . $text;
}
Is that how to run the url inside the loop until the loop is completed?
file_get_contents($url);?mysql_*functions are deprecated since a long time ?