954,568 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

retrieving images from database in thumbnail form

hi guys.. need your help for retrieving selected images from the database and display it in thumbnails.. thanks

tagz017
Newbie Poster
17 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

<? mysql_connect("localhost","root", ""); mysql_select_db("dbname"); $query = "SELECT Pics from tblPic"; $result = mysql_query($query); echo ''; while ($r=mysql_fetch_array($result)) { $pic = $r['Picture']; echo ''.$pic.''; } echo ''; ?>

flagbarton
Newbie Poster
10 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

<? mysql_connect("localhost", "root", ""); mysql_select_db("dbname"); $query = "SELECT Picture FROM tblPics"; $result = mysql_query($query); echo ''; while ($r=mysql_fetch_array($result)) { $pic = $r['Picture']; echo ''.$pic.''; } echo ''; ?>

flagbarton
Newbie Poster
10 posts since Aug 2007
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You