Hello,
I try to send some data to a web serveur using the http post method and to get the data with a PHP page. The problem is that when the php script try to read the variable, it's empty.
The midlet code, is the one that is provide by sun on the address :
http://wireless.java.sun.com/midp/ar...ostMidlet.java
And the code of the php page is like follow :
<?php
mail("info@lombric.ch",$_POST['name'],$_POST['name']);
echo "Confirmation";
?>
I¡¯m using a nokia 3650 to make the test.
I know that the connection is ok and that the script had been executed, because I get the mail, but the variable ¡®name¡¯ is empty !!!
If someone add an idee why is not working please tell me¡_

Reply With Quote

