PDA

View Full Version : Image URl Command



Anayet
July 12th, 2001, 14:24
Is there any type of code that I can use to show the URL of a Image?

Theres only one Image on the Page, so only one URL is needed, but the image name changes.
And page is in PHP.

The file is attached

Thanks

lucifer
July 12th, 2001, 14:36
this what you mean?

end of file


<html>
<head>
<title>Image Uploaded</title>
</head>
<body>
<p>Image Name: <? echo "$img_name"; ?><br>
Image Size:<? echo "$img_size"; ?><br>
Image Type: <? echo "$img_type"; ?><br>
Image: <br><img border="0" src=<? echo "$url/$img_name"; ?>>
<? echo "$url/$img_name"; ?>
</p>
<body>
<html>

Anayet
July 13th, 2001, 11:35
What can I say except, brilliant.


Thanks again.