Creating an array from a MySQL table
- by Rob
I'm trying to create an array to use for a curl_multi_exec, but I can't seem to create the array properly.
Here is my code:
$SQL = mysql_query("SELECT url FROM urls") or die(mysql_error()); //Query the shell table
while($resultSet = mysql_fetch_array($SQL)){
…