Thread: Signup borked
View Single Post
  #5  
Old 28th December 2020, 18:53
xblade's Avatar
xblade xblade is offline
Cod3r
 
Join Date: Nov 2020
P2P
Posts: 239
Thumbs up
DND

call your self a coder why not just tell him

Code:
if (!$ret) {
        if (mysql_errno() == 1062)
                bark("Username already exists!");
        bark("borked");
}
Replace with

Code:
if (!$ret) {
        if (mysql_errno() == 1062)
                bark("Username already exists!");
}
Reply With Quote