I have a drop down select box and need to know how to recall all the info that option has and have it post it's info into the form fields below it. How is that done. Because it'll give the user the ability to edit the info and then click "Update" and it'll change the info.
http://www.kansasoutlawwrestling.com/edittitle.php
I was told this would help but I'm still clueless. Someone with an intelligent mind please help me please:
You need AJAX for that. The drop down menu would need an onchange="ajax_function()" inside of the <select> tag. You would have to define ajax_function() as a javascript function elsewhere in the document.
Essentially how it works is this (extremely simplified): the ajax/javascript function that is called from onchange will check what the current selected value in the menu is and send it as a parameter to a .php file. The php file retrieves the parameter with the $_POST or $_GET arrays. The file pulls what ever info you need from the database, formats it, and gives it back to the javascript function. The javascript function then sets some other div's inner HTML to whatever was retrieved from the php file.
PHP Script that uses AJAX
Moderator: General Moderators
-
CoolAsCarlito
- Forum Contributor
- Posts: 192
- Joined: Sat May 31, 2008 3:27 pm
- Contact:
Re: PHP Script that uses AJAX
Do you have any javascript experience?
-
CoolAsCarlito
- Forum Contributor
- Posts: 192
- Joined: Sat May 31, 2008 3:27 pm
- Contact:
Re: PHP Script that uses AJAX
I know how to read it but I don't understand it enough to write it.
Re: PHP Script that uses AJAX
In that case, jumping straight into AJAX without any previous Javascript experience might prove an insurmountable task for you. Do you have any previous programming experience in any language?
-
CoolAsCarlito
- Forum Contributor
- Posts: 192
- Joined: Sat May 31, 2008 3:27 pm
- Contact:
Re: PHP Script that uses AJAX
HTML and PHP