Can anybody spot my mistake? (PHP Mailto)

Gonna guess that "if($_GET['sent'] == "1") {" is the problem. You need an else.

E.g.

if($_GET['sent'] == "1") {

} else {

echo "Problem sending...";

}

That way you'll know if it's having trouble passing the sent variable.
 
Back
Top Bottom