Hi all,
I have in my js file:
function sendDataToPhp()
{
theUrl = 'myfile.php';
params = '';
params += 'function=sendData';
params += '&myfield='+someVariableForMyField;
$.ajax ({
url: theUrl,
data: params,
type: "POST",
async:false,
success: function (data, textStatus)
{
}
});
}
Then in myfile.php
if (isset($_REQUEST['function']))
{
$function = $_REQUEST['function'];
}
switch ($function) {
case 'sendData':
//code
break;
default:
//code
}
With this I'm sending the code flow to the sendData case of the switch.
Now Inside the success, in the ajax() I need to send the code flow to the default case of the switch. How can I do that?
Thanks a million!
function=sendDatain the params it will go to thedefault, much better if you can make that as an argument in thesendDataToPhp(function_name)so you can re-use it with or without it – tradyblix Jun 21 '12 at 8:18sendDataToPhp('function=sendData')orsendDataToPhp('function=dontexist')<-- call this again inside of success, make the function re-usable or something, might not be a good practice IMO – tradyblix Jun 21 '12 at 8:32