View Single Post
Old 01-07-2013, 03:42 PM   PM User | #7
Redcoder
Regular Coder

 
Redcoder's Avatar
 
Join Date: May 2012
Location: /dev/couch
Posts: 309
Thanks: 2
Thanked 46 Times in 45 Posts
Redcoder has a little shameless behaviour in the past
Does it give out any error?

You should check also try echoing out $_POST['email'] just above the if(isset($)POST['email'] statement to check whether it has a value.

Have this at the top of your script:
PHP Code:
<?php

ob_start
();
error_reporting(E_ALL);
ini_set('display_errors''1');

?>
and this at the very bottom:
PHP Code:
<?php

ob_end_flush
();
Then tell us what it displays.
__________________
For professional Hosting and Web design.....


NetEssentials.co.uk

Last edited by Redcoder; 01-07-2013 at 03:51 PM..
Redcoder is offline   Reply With Quote
Users who have thanked Redcoder for this post:
codernoob (01-07-2013)