Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is my form declaration

  <form enctype="text/plain" method="post" action="PI_Application_Submission.php">

Here is my input:

  <tr><td>Requested User Name<font color="red">*</font></td> <td><input type="text" name="user_name" size="35"></td></tr>

Here is my php line...

  echo $_POST['user_name'];

I know how to check with the isset function and this is not just a warning. For some reason the value of user_name just does not get passed. What am I doing wrong?

My error message is as follows:

  Notice: Undefined index: use in /var/www/html/PI_Application_Submission.php on line 6 
share|improve this question
Undefined index either youre specifying the path incorrectly or the page doesnt exist – Norse May 16 '12 at 19:24
Undefined index means that the array has no key with that name; not that the path or page doesn't exist – andrewsi May 16 '12 at 19:27
Check the error, it tells you, that you trying to read index "use" – Electronick May 16 '12 at 19:29
Double check your file names – Celeritas Nov 18 '12 at 22:38

2 Answers

up vote 2 down vote accepted

Try to removing enctype form attribute. Basically PHP does not parse POST when your enctype different from application/x-www-form-urlencoded or multipart/form-data.

You can access to raw post data with file_get_contents('php://input')

share|improve this answer
You sir are a genius. I appreciate all the fast responses guys. I would give you a vote up but I'm too new. :P – Florin Stingaciu May 16 '12 at 19:30
welcome to community %) – Electronick May 16 '12 at 19:33

You also need an ID attribute on the input element, also, don't forget to close your html tags

<input type="text" name="user_name" id="user_name" size="35" />
share|improve this answer
This did not work. Same output. :( – Florin Stingaciu May 16 '12 at 19:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.