chrismassey
Programmer
Here is a standard HTML submit button...
The issue I have with this button is that its value is not only the value carried by the form (i.e. $button = param('button'); ) but also the value thats printed on the button itself.
However, the value I use in the script thats carried by the button is entirely different to the value that should be printed on the button. Therefore I tried using this...
(Note that $_ is the value that should be carried forward from a loop)...
However the source code of the HTML page that the form prints shows that everything looks correct...
However the value that is carried forward is not $_ but its Button
I am totally confused.
Cheers,
Chris
Code:
<input type="submit" name="button" value="Button">
The issue I have with this button is that its value is not only the value carried by the form (i.e. $button = param('button'); ) but also the value thats printed on the button itself.
However, the value I use in the script thats carried by the button is entirely different to the value that should be printed on the button. Therefore I tried using this...
Code:
<button type="submit" name="button" value="$_">Button</button>
(Note that $_ is the value that should be carried forward from a loop)...
However the source code of the HTML page that the form prints shows that everything looks correct...
However the value that is carried forward is not $_ but its Button
I am totally confused.
Cheers,
Chris