function delete(){
echo "SUPRESSION D'UN MESSAGE<br>";
echo "$message<br>";
}
if (isset($action)) {
if ($action == "deletemss") {
delete();
}}
and this is on a ahref
.php?action=deletemss&message=$ID
( ID in this case have a "1" value )
so why in my function delete() it dosen't print 1 ?
THanks