hi.
i'm having problems getting HDML and PHP to play nice with each other.
how do i go about making an input form on a cell phone that passes the varibles onto a script?
i've got this:
<card id="u" title="PK Login">
<do type="accept" label="OK">
<go href="#pass"><setvar name="password" value=""/></go>
</do>
<p>
Login:
<input name="user_name" title="USER NAME:" format="*M"/>
</p>
</card>
<card id="pass">
<do type="accept" label="login">
<go href="login_go.php?username=$(user_name:escape)&password=$(password:escape)"/>
</do>
<p>
PASSWORD:
<input name="password" title="PASSWORD:" format="*M"/>
</p>
</card>
and my script is login_go.php
also - how do i get login_go.php to foward the user to another file. the Header(Location: blah.php) doesn't seem to work.
thanks todd