Hello
I have the following code which works fine and runs the php script to
send data to a mysql db.
new Ajax.Updater(
'updateDiv',
'sendSpaResults .php',
{
asynchronous:tr ue,
method:'post',
parameters: params
}
);
How can I also run formmail.cgi to send the data via email? The code
below is wrong.
new Ajax.Updater(
'updateDiv',
'sendSpaResults .php',
'../formmail/formmail.cgi',
{
asynchronous:tr ue,
method:'post',
parameters: params
}
);
Cheers
Geoff
I have the following code which works fine and runs the php script to
send data to a mysql db.
new Ajax.Updater(
'updateDiv',
'sendSpaResults .php',
{
asynchronous:tr ue,
method:'post',
parameters: params
}
);
How can I also run formmail.cgi to send the data via email? The code
below is wrong.
new Ajax.Updater(
'updateDiv',
'sendSpaResults .php',
'../formmail/formmail.cgi',
{
asynchronous:tr ue,
method:'post',
parameters: params
}
);
Cheers
Geoff
Comment