You can use the following code also:
for url www.yoursite.com/index.php?image=1
<?php
if (isset($HTTP_GET_VARS['image']) && $HTTP_GET_VARS['image'] >0){
?>
<img src="/user/mysite/image_<?php echo $HTTP_GET_VARS['image']?>.jpg">
<?php
}
?>
and the /user/mysite/image_1.jpg will be loaded for image=1 or image_2.jpg for image=2
... and so on
--
-------------------------------------------------
Cristian MARIN
InterAKT Online (www.interakt.ro)
+4021 411 2610
[EMAIL PROTECTED]
"Philip J. Newman" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
To Do:
I would like to call image /user/mysite/image_01.jpg using something like
/user/mysite/public_html/loadimage.php?image=1
is this a simple procedure or hard ...
any suggestions or someone want to point me in the right direcion/ Phil