I have standard text links which all say “Full View”. When clicked these links send out php in this form: http://mysite.com/fullview.php?myimage=30
Basically there’s thumbnailed images and text links that say full view. I’d like for fullview.php to capture the myimage variable, and display it as a full sized image. Meaning, a blank page (fullview.php) displaying the image. Sounds likes javascript to me.
How do you put the javascript into fullview.php to capture the variable and display it as a full sized image?
Thanks for any help,
Darrell
php is server side script
javascript is client side script
so displaying a web page to a user first is executed php and result is send to client. After he receive it then javascript is executed
HTH
Ivo Stoykov