I am writing in php, mysql with jquery moving info back and forth from the server.
Each movement by jquery now requires a separate file. ie:
var job=$('#positions').val();
$.ajax({
type:'post',
url:'phpscriptgettinginfofromdb.php',
data:job
});
The following jquery scripts require new php files.
How can I rewrite this so that several php functions are
included into a single php file.
Thanks,
Andy