Hello,
I'm making a wml page ... I want to use a form in my page but i was wondering how i can check if the user clicked the next button.
The form points to the same page and if the user pushed the next button I want to execute a command, how can I detect this ?
Normally in HTML I do i like this:
<?
if($submit)
echo "blah";
?
<form action=blah.php method=POST>
<input type="submit" name="submit">
</form>
Thanks in advance