|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
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> |
|
#2
|
|||
|
|||
|
Well I think the problem is in your PHP script which you don't show it, add.php
Did you grab there the two variables? |
|
#3
|
|||
|
|||
|
Nah, I've tested it by passing the variable from a html page. It added the data to a db no problem. Obviously being formatted for wap it didnt display in the browser but my db showed the record added. I cannot seem to get wml to pass a variable from one place to another.
|
|
#4
|
|||
|
|||
|
It's very very very very easy. The two input fields name and phone are passed, the only thing you have to do is grab them. You grab them with the HTTP_POST_VARS["name"] and HTTP_POST_VARS["phone"], assigning them to variables. The end.
|
|
#5
|
|||
|
|||
|
Thanks guys.. foud out what the problem was in the end.. crappy emulator on wap.com can't handle forms.. seems to chew out wap.yahoo.co.uk the same as it did to mine..
Bastards! Anyway cheers guys.. time to put databases on WAP sites URL Ryan |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > WAP Programming > How do I get data from a form to a PHP script? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|