Display Several Images from Different URLs

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
omanush
Forum Newbie
Posts: 9
Joined: Thu Jul 24, 2003 8:58 pm
Location: Montreal, QC
Contact:

Display Several Images from Different URLs

Post 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?
qartis
Forum Contributor
Posts: 271
Joined: Sat Dec 14, 2002 4:43 pm
Location: BC, Canada
Contact:

Post by qartis »

That one's in .asp, but in php, you'd just need:

Code: Select all

<img src="<?=$_GET['img']?>">
omanush
Forum Newbie
Posts: 9
Joined: Thu Jul 24, 2003 8:58 pm
Location: Montreal, QC
Contact:

Worked!

Post by omanush »

Thanks a lot! You just made me a php programmer :D .
Post Reply