Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~167 People Reached
Favorite Forums
Favorite Tags
php x 1
Member Avatar for Rohit Mehra

<?php session_start(); ob_start(); include 'database_connection.php'; if (isset($_POST['formsubmitted']) && $_POST['formsubmitted'] == TRUE) $error = array();//this aaray will store all error messages if (isset($_POST['email']) && empty($_POST['email'])) //if the email supplied is empty { $error[] = 'You forgot to enter your Email '; } else { if (preg_match("/^([a-zA-Z0-9])+([a-zA-Z0-9\._-])*@([a-zA-Z0-9_-])+([a-zA-Z0-9\._-]+)+$/", $_POST['email'])) { $Email = $_POST['email']; …

Member Avatar for pritaeas
0
167