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? Link to comment https://forums.phpfreaks.com/topic/5535-ad-script/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.