
November 28th, 2000, 09:56 AM
|
|
Junior Member
|
|
Join Date: Nov 2000
Posts: 15
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Excuse the tone of the above.. figured i might get more of a response that way!
Just wondering if anyone knows how to get the 2 input fields name and phone from the form to my PHP script.. i've tried the following to no avail..
cheers,
Ryan
<Code Snippet/>
<?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org//DTD//wml_1.1.xml">
<wml>
<!--Nokia Parser Info: Phone = Nokia 7110; Height = 90; Width = 130; CurrentDeckSize = 38; MaxDeckSize = 1600; CardsOnEachLine = 5; CardsVerticalGap = 30-->
<card id="card1" ordered="true" newcontext="false">
<p align="left">
<b>Add Record</b></p>
<p align="left">
Name:
<input title="name" name="name"/>
Phone:
<input title="phone" name="phone"/>
<br/>
<anchor>Submit
<do type="accept" label="Query">
<go href="http://www.dreamjobs.org.uk/test/wap/add.php" method="post">
<postfield name="name" value="$(name)"/>
<postfield name="phone" value="$(phone)"/>
</go>
</do>
</anchor>
</p>
</card>
</wml>
|