12 Nov 2007 at 22:28 #1 DJMK4 DJMK4 Soldato Joined 1 Dec 2004 Posts 22,900 Location S.Wales . Last edited: 22 Sep 2018
12 Nov 2007 at 22:54 #2 Kemik Kemik Soldato Joined 7 Nov 2005 Posts 4,958 Location Widnes 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.
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.
12 Nov 2007 at 23:13 #3 DJMK4 DJMK4 Soldato OP Joined 1 Dec 2004 Posts 22,900 Location S.Wales Sorted