Guest User

PumpkinSeed

a guest
Nov 5th, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <div id="photo_section">
  2.     <a href="upload.php"><div id="upload">Upload</div></a>
  3. <?php          
  4.     $images_query = "SELECT img_path, created_on FROM images WHERE user_id = ".$id.";";
  5.     $images_query_result = $dtbs->query($images_query);
  6.     while($images = $images_query_result->fetch_assoc()){
  7. ?>
  8.     <div id="photos">
  9.         <img src="<?php echo $images[img_path]?>"/>
  10.         <div id="nickname"><h3>PumpkinSeed</h3><?php echo $images[created_on];?></div>
  11.     </div>
  12. <?php
  13.     }
  14. ?>
  15. </div>
Advertisement
Add Comment
Please, Sign In to add comment