Thanks. That's what I initially thought, but I can't seem to get the syntax right.
When I cut and paste from your example
>value="<?php = $_GET['nop'] ?>"
I get the following error:
Parse error: parse error, unexpected '=' in dogapp1.php on line 5
If I take out the equal sign, the script runs, but I get a blank field (no "Rover"):
>value="<?php $_GET['nop'] ?>"
I know it must be something simple that I'm missing ...
-- Bill