Code Help - 3dfa/PHP users
I'm writing a short program that checks to see if the error_message is sent back to 3dfa. If the error message is present, it is supposed to load the error_message result (a layer with the message). Else it's supposed to go on as normal.
The problem I'm having is, how do I say, "just go on as normal". (supposing error_message is false.) Here is what I've done so far.
Quote:
admin_email="
[email protected]" //Recipient's email
/* Variables to be imported from script
thankyou_message
error_message
*/
loadVariables ("http://script url.com","GET");
if error_message=="show error message"{
display_message=element ("Layer 12")
display_message.show();
}
{
else{
What????? Is there a command that says go on as usual?
Do you think I would be better to use a CASE command? and just use one variable?