I have a selectbox that needs to be updated dynamically. I am using jquery to perform that using .load($url), where $url is the location of the php file to call. I am wondering if there is a way to call a specific function within that php file instead of calling the entire php file.
1
-
3I don't believe there is, sorry. You are effectively opening a web page and capturing the output. I don't think there's anyway from a URL to cause a specific PHP function to be executed within a collection of functions contained with a 'page' without you writing code within the page to broker that interaction.Lazarus– Lazarus2010-08-10 15:20:13 +00:00Commented Aug 10, 2010 at 15:20
Add a comment
|