Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #107.55K
Ranked #4K
~351 People Reached
Favorite Forums
Favorite Tags

1 Posted Topic

Member Avatar for mexabet

You can try this code: <?php // if form was submitted if ($_SERVER["REQUEST_METHOD"] == "POST") { //This gets all the other information from the form $curpassword = mysql_real_escape_string(crypt($_POST["curpassword"])); $newpassword = mysql_real_escape_string(crypt($_POST["newpassword"])); $confirmation = mysql_real_escape_string(crypt($_POST["confirmation"])); // validate submission if(empty($_POST["curpassword"])){ echo nl2br ("You must provide your current password. \n"); }elseif(empty($_POST["newpassword"])){ echo nl2br …

Member Avatar for mexabet
0
351

The End.