Hello,
I'm having problems reading values from WML code forms in PHP.
Anyone have any suggestions on how i would get the value from a inputbox or
listbox (WML) and output it in PHP?
I'm currently using something like this:
Name:<input type="text" name="name"/>
<do type="accept" label="Next">
<go href="#card2"/>
<card id="card2" title="result">
<p>
<?php
echo $(name); // also tried $name but it doesn't output anything...
?>
What should i do so I can read values from WML scripts??
Thanks in advance.