<?php if($GET['image']) { echo $GET['image']; ?>
Displays nothing when called with script
gundamt.php?id=2;image=MS4000
Used for - <?php if($GET['image']) { echo $GET['image']; ?> <tr><td><img src="http://www.roleplayers.info/friendlyaiedo/images/gfiles/<?=$_GET['image']?>.gif" alt="left"></td> <?php } else { ?>
you might not try calling the script with
it should be
gundamt.php?id=2&image=MS4000
that might fix your problem
Er. what's the character after 2?
This:
&
It is what separates variables that you pass to a script through urls.
Thank you, that works 🙂