Page 1 of 1

Display Several Images from Different URLs

Posted: Thu Jul 24, 2003 8:58 pm
by omanush
Hi,

"First of all, I’m an absolute newbie of programming languages who jumped into PHP from Photoshop. Huge difference between my old and new career. So folks, please don’t laugh at me, just be kind to help me out."

Okay, here is what exactly I want to do. I want to make an image display page similar to the following link but with PHP and without using database:

http://images.auctionworks.com/fullView ... ge/102.jpg

This page shows you any Image when you put the image url after “img=”. Please, does anyone know what the solution is for the Display Page?

Posted: Thu Jul 24, 2003 9:22 pm
by qartis
That one's in .asp, but in php, you'd just need:

Code: Select all

<img src="<?=$_GET['img']?>">

Worked!

Posted: Thu Jul 24, 2003 11:10 pm
by omanush
Thanks a lot! You just made me a php programmer :D .