sumfight Posted December 14, 2007 Share Posted December 14, 2007 Ok, I got everything i need to set up to make my images with text and link to work, the text and links work, but i can't get the picture to appear, here is the code i am using <?php $host="host"; // Host name $username="username"; // Mysql username $password="password"; // Mysql password $db_name="database name"; // Database name // Connect to server and select databse mysql_connect("$host", "$username", "$password")or die("cannot connect to server"); mysql_select_db("$db_name")or die("cannot select DB"); $sql="SELECT * from images LIMIT 12"; // choose limit of pictues to be displayed $result=mysql_query($sql); ?> <table width="95%" border="0" cellpadding="3" cellspacing="3" style="padding-top:5px"> <tr> <?php $i=13; // always 1 more than limit while($rows=mysql_fetch_array($result)){ $i = $i - 1; if($i % 2 == 0) { ?> </tr> <tr> <?php } ?> <td align="center" valign="top"><table border="0" align="center" > <tr> <td align="center><img src="<?php echo $rows['image']; ?>" alt="<?php echo $rows['name']; ?>" border="0"/></td> </tr> <tr> <td align="center" valign="middle"><a href="<?php echo $rows['link']; ?>"><?php echo $rows['name']; ?></a></td> </tr> </table></td> <td> <?php } ?> </td> </tr> </table> and in my database i am putting the image link under image as this: http://sumfight.com/v2/mv/vidpics/20.jpg it does not show up though, any help? Link to comment https://forums.phpfreaks.com/topic/81749-solved-image-trouble/ Share on other sites More sharing options...
phpSensei Posted December 14, 2007 Share Posted December 14, 2007 Try Viewing the Page source and scroll down to the <img src= ..etc, and see if the link is correct. Link to comment https://forums.phpfreaks.com/topic/81749-solved-image-trouble/#findComment-415195 Share on other sites More sharing options...
sumfight Posted December 14, 2007 Author Share Posted December 14, 2007 go it, forgot a small " Link to comment https://forums.phpfreaks.com/topic/81749-solved-image-trouble/#findComment-415210 Share on other sites More sharing options...
corbin Posted December 14, 2007 Share Posted December 14, 2007 That pic looks like someone I know.... Sorry for the off topic-ness.... lol Link to comment https://forums.phpfreaks.com/topic/81749-solved-image-trouble/#findComment-415212 Share on other sites More sharing options...
phpSensei Posted December 14, 2007 Share Posted December 14, 2007 Looks like my teacher. ( Not insulting you lol, just a resemblance.) Link to comment https://forums.phpfreaks.com/topic/81749-solved-image-trouble/#findComment-415215 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.