HI could someone help me please... I want to put, in a ( a href ) link, a way to call a function like delete... It is possible..
Thanks
Put a code that your script will understand. For example:
<a href="script.php?action=delete">
And then script.php:
if (isset($action)) { if ($action == "delete") { // delete something } }
Diego
Or if you have function that already deletes or for that matter does anything, you can get to it by calling the function after
if($action=="delete") {
delete(); //this is the function
}
Thank you !!! I'm just a beiginner !! THanks !