saritor Posted August 13, 2007 Share Posted August 13, 2007 Hi there, I am somewhat new to php and sadly Google is not being helpful at the moment. So here goes my question: Is it possible to submit or call a php page on itself via a URL without having to use any forms or submit buttons, or at least the buttons? Essentially what I am trying to do with my page is have a menu listing of directories that you can browse via a browser, and want to give the user the option of either clicking a link to redirect them to that particular folder (yes only doable in IE, I know =p) or to click a second link which will call the page on itself using a mysql query to find the subdirectories of that folder. Its sort of a confusing situation if so I need to clarify more I can. Quote Link to comment https://forums.phpfreaks.com/topic/64659-self-submittal-without-using-forms/ Share on other sites More sharing options...
adam678 Posted August 13, 2007 Share Posted August 13, 2007 Sure, to submit a form like this: <form id="custForm" name="custForm" method="post" action="formpage.php"> First Name: <input type="text" name="firstName" value="" /> <br><br> Last Name: <input type="text" name="lastName" value="" /> <br><br> <input type="hidden" name="custForm" value="submit" /><input name="submit" type="submit" id="submit" value="Search" /></td> </form> You would just do: http://yourdomain.com/formpage.php?custForm=submit If you want to fill in fields in the form above, you would use: http://yourdomain.com/formpage.php?custForm=submit&firstName=john&lastName=smith Quote Link to comment https://forums.phpfreaks.com/topic/64659-self-submittal-without-using-forms/#findComment-322463 Share on other sites More sharing options...
saritor Posted August 13, 2007 Author Share Posted August 13, 2007 Ah, I see so you dont really even need to use php. I will test it out some and see how it works for me.=) Quote Link to comment https://forums.phpfreaks.com/topic/64659-self-submittal-without-using-forms/#findComment-322555 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.