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
~555 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for brave_demo

<?php //email signup ajax call if($_GET['action'] == 'signup'){ mysql_connect('localhost','root',''); mysql_select_db('newsletter'); //sanitize data $email = mysql_real_escape_string($_POST['signup-email']); //validate email address - check if input was empty if(empty($email)){ $status = "error"; $message = "You did not enter an email address!"; } else if(!preg_match('/^[^\W][a-zA-Z0-9_]+(\.[a-zA-Z0-9_]+)*\@[a-zA-Z0-9_]+(\.[a-zA-Z0-9_]+)*\.[a-zA-Z]{2,4}$/', $email)){ //validate email address - check if is a valid …

Member Avatar for brave_demo
0
423
Member Avatar for vasuv

Hi Vasu, First of all, you need maintain four categories of login credential and their rights. 1. Super Admin 2. Admin 3. Staff 4. User(Client) User can post the query, and specify the category of the issue ( ex: Invoice, Product etc.,) Admin identify the query and assign to particular …

Member Avatar for brave_demo
0
132

The End.