Thomisback Posted May 7, 2008 Share Posted May 7, 2008 Hi, I'm trying to browse a number of website which I receive from my MySQL database at the same time. I tried to use curl but couldn't figure out how to do this. My script so far looks like the following: <?php /*================================== Author : Lord Nightslave [email protected] Load a query result into two dimensional array. You can later refer the result in an array form with the original field name. i.e print $myresultarray[$i]["My Table Field Name"] ====================================*/ ?> <?php /* You can put this in other file and just include it */ function OpenDb($hostname,$uid,$pwd,$dbname){ $link = @mysql_pconnect($hostname,$uid,$pwd); if($link && mysql_select_db($dbname)){ return($link); } else{ return(FALSE); } } ?> <?php function QueryIntoArray($query){ settype($retval,"array"); $result= mysql_query($query); if(!$result){ print "Query Failed"; } for($i=0;$i<mysql_numrows($result);$i++){ for($j=0;$j<mysql_num_fields($result);$j++){ $retval[$i][mysql_field_name($result,$j)] = mysql_result ($result,$i,mysql_field_name($result,$j)); }//end inner loop }//end outer loop return $retval; }//end function ?> <!--An Example How To Use The functions To try it simple change the appropriate variable to your own database & tables --> <HTML> <HEAD> <TITLE>PHP Array Test</TITLE> </HEAD> <BODY BGCOLOR=WHITE> <?php OpenDb("localhost","user","pass","dbname") or die("Failed Opening Database"); settype($myresult,"array"); $query = "SELECT word FROM links"; $myresult = QueryIntoArray($query); for($i=0;$i<count($myresult);$i++){ $delink = $myresult[$i]["word"]; echo $delink; } ?> </BODY> </HTML> I actually tried this after echo $delink; $url=$delink; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); $store = curl_exec ($ch); $xml = curl_exec ($ch); But didn't work out :/ curl_close ($ch); Link to comment https://forums.phpfreaks.com/topic/104574-solved-curl-in-an-array/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.