sneamia Posted November 3, 2007 Share Posted November 3, 2007 Is there any way for me to send a POST variable, such as a password, to a page such as '/admincenter.php?a'? Link to comment https://forums.phpfreaks.com/topic/75938-sending-a-get-and-post-variable-simultaneously/ Share on other sites More sharing options...
pocobueno1388 Posted November 3, 2007 Share Posted November 3, 2007 Set the $_GET variable in the action attribute, and then set the method to POST. <form action="admincenter.php?value=a" method="post"> <input type="text" name="var"> <input type="submit" name="submit"> </form> Link to comment https://forums.phpfreaks.com/topic/75938-sending-a-get-and-post-variable-simultaneously/#findComment-384392 Share on other sites More sharing options...
dewey_witt Posted November 10, 2007 Share Posted November 10, 2007 Ive been wonding this myself thanx Link to comment https://forums.phpfreaks.com/topic/75938-sending-a-get-and-post-variable-simultaneously/#findComment-388375 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.