Sending Variables in Post without the input tag
Posted
by abhishekgupta92
on Stack Overflow
See other posts from Stack Overflow
or by abhishekgupta92
Published on 2010-06-02T13:57:42Z
Indexed on
2010/06/02
14:03 UTC
Read the original article
Hit count: 238
I want to send only one variable via the post method. I have queried the database and have to post $row[id] variable to the page along with the form. To send the user's input we simply write like <input type="text" name="xyz"></input>
and then we access it as $_POST[xyz]. This way we can send a variable that a user write. But, I want to send something that user has not written but there in my sending file as $row['id']. So, I want to send this variable as well. How can I do that? And also how will I be able to access that?
© Stack Overflow or respective owner