Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 13th, 2012  |  syntax: None  |  size: 0.30 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Images path save in database
  2. <a href="imshow.php?id=<?php echo $id; ?>" target="_blank">
  3.    Open in new window
  4. </a>
  5.        
  6. <html>
  7. <head><title>Image Details</title></head>
  8. <body>
  9.   <?php
  10.       $path=...//read from database using $_REQUEST['id']
  11.   ?>
  12.   <img src="<?php echo $path;?>" alt="" />
  13. </body></html>