i have searched around to no avail. essentially what i want to do is have the url variable (?1 ?234 ?2534753 what ever it is) store itself in a php variable which would then inject itself into an html image tag loading the image with the corresponding number (i.e "www.image.com?1" would load "1.jpg" into the page)
my code (for this part) as it stands looks like this
my code (for this part) as it stands looks like this
Code:
<? if (!empty($_SERVER["QUERY_STRING"])) ?>
<? $img_name = QUERY_STRING ?>
<img src= "<? echo $img_name ?>" width="1024" height="768"/>