View Single Post
  #1  
Old 1st June 2022, 12:14
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default [progessmod] account login update*
Snippets
Code:
if(empty($_POST['submit'])){
 $error = "something went wrong with proccessing your post,
 please try again";
 } while() {
 if(empty($_POST['username'])){
  $error = "username is invalid try again";
 }} while() {
 if(empty($_POST['password'])){
 $error = "password is invalid try again";
 }} else {
 //Define $user and $pass
 $user=$_POST['user'];
 $pass=$_POST['pass'];
Reply With Quote