| A: |
We will send POST a variable called action this
variable contains the following values
action = exists
action = add
action = delete
if action == exists
print *failed* -- username does not exist
else
print *success* -- username does exist
if action == add
print *success* -- username added
else
print *error* -- username not added $some_error_message
if action == delete
print *success* -- username deleted
else
print *error* -- username not deletedCustom Postback scripts
should be responding with one of the three results: *error*,
*success*, *failed* |