Please help
Thanks, R
Code: Select all
<body>";
echo $_POST['operation'], "<br>";
switch ($_POST['operation']) {
case "No Change/Exit": <<========== Is it possible to do this exec(ExitProgram.php) or somthing like this
exit("Bye Bye"); == or for that matter run any php script from another php script ==
break;
case "Revise This Account": ==== trying to get code to run from another page =====
echo "<br>Code to revise account goes here<br>";
break;
case "New Account":
echo "<br>Code to add new account goes here<br>";
break;
case "Delete This Account":
echo "<br>Code to delete this account goes here<br>";
break;
default:
exit("Bye Bye");
break;
}