|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Hi everybody,
I am really hard trying to find issue to solve this problem. I have form in html and on click it sends data through post to common php script, which should process it. But there is no data in the $_POST[] array. When I look on the data that are transfering using tamper data in firefox, it seems data are ok...but script doesn't see anything. Can anybody tell me, how can I solve this problem? I tried everything what I found on the internet, but without any progress... |
|
#2
|
||||
|
||||
|
You would need to start by posting your form and form processing code.
This could be anything form a form that is not valid HTML, a maximum post data size problem, register globals being on and the data is being overwritten, or a logic error clearing the data... |
|
#3
|
|||
|
|||
|
Quote:
Ok, i tried to have most simple code, so my code now looks: <form action="send-data.html" method="post" enctype="multipart/form-data"> <label for="form_name">Name</label> <input type="text" id="form_name" name="form_name" value="" /><br /> <input type="submit" value="Send" class="button" name="form_button" /> </form> and php code: <?php echo $_POST['form_name']; ?> .html is processed by 404 handler. Maybe, this could be the problem? Is there any other option how process .html non-existing files? |
![]() |
| Viewing: Codewalkers Forums > PHP Related > PHP Installation > $_POST Problem on IIS |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|
|