Shadow Hatake Posted March 22, 2006 Share Posted March 22, 2006 I got bored and decided to code a random ad script. And this si what I've got...[code]<?phpinclude('dbconnect.php');$query_link = 'SELECT link FROM ads';$result_link = mysql_query( $query_link );$row_link = @mysql_fetch_array( $result_link, MYSQL_ASSOC );shuffle( $row_link );echo '<a href="'.$row_link.'">';$query_img = 'SELECT img FROM ads WHERE link = "'.$row_link.'"';$result_img = mysql_query( $query_img );$row_img = @mysql_fetch_array( $result_img, MYSQL_ASSOC );echo'<img src="'.$row_img.'"></a>';?>[/code]Now when I go to test it it doesn't work. Help? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.