$w3 = mysql_query( "SELECT * FROM w3" ) or die("SELECT Error: ".mysql_error());
$worth = mysql_query( "SELECT * FROM worth" ) or die("SELECT Error: ".mysql_error());
// fetching data
while ($get_w3 = mysql_fetch_assoc($w3db) && $get_worth = mysql_fetch_assoc($worth))
{
// Loading Urls for Comparing
echo $w3url=$get_w3['domain']; // cant echo
echo $worthurl=$get_worth['domain']; // ok printed
the code seems to be ok .. but i do not know why it cant print ( echo $w3url=$get_w3; )
please help
also is there any way to use separate while loops and compare data i use one while loop
for tow data fetches because i have to compare data of both tables