Is it possible to pass a variable from the form to GD script?
image created with GD would have to be embedded on the page after variable is passed.
<form name="form" method="post" action="somepage.php">
<input type="text" name="var" size="10">
<input name="go" type="submit" value="go">
</form>
This image link is on somepage.php
<img src="image.php"? <? $HTTP_POST_VARS['var']?>>
is that a correct way to pass $var to the link