I had the same problem, it means there is an else where there shouldn't be an else. Usually a { bracket is the problem. So if you've done
if() { if(){
} else {
if() {
}
}else
You need to remove the bracket just after the else as you see there's 4 bracket's opening the statement and only 3 closing them. You need an equal amount.
i get unexpected index errors on line 5, 8, 9, 10, and 11 but when i use it i get a wierd unidentified variable error on line 16 but on it its only a { and i got a ending }. its really wierd cause i did exactly as phpacademy did
@joeldelumen salt ads a generated code to the md5 hash and it makes it harder for a hacker to get the password, when a user signs up it ad's a string to their password and then runs md5.
With the md5 password, instead of doing that, just do this - if ($fullname&&$username&&$_POST['password']&&$_POST['repeatpassword']&&$age&&$location) .
Hey Alex. How's it going? I got just a question for you... When I define my $submit variable by the the assignment of the value $_POST['submit'], undefined index comes up! :| I'd decided to escape that error by adding @ at the beggining of the sentence.
There is problem about checking password characters ti need to bi like if (strlen($password)>70||strlen($password)<2) { echo "Parola çok küçük veya çok büyük!"; } else { $password = md5($password); $repeatpassword = md5($repeatpassword); }
What does "Notice: Undefined variable: submit in C:\xampp\htdocs\jonzy\register.php on line 18" mean. When i first go to the register.php page that eror goes up. Some one please help
@daeheadshot Yes, however it's not about ease, it's more about protecting the database from user-generated errors. maxlength is a client-side "protection", so-to-speak. The MySQL limit is a minimum version of a server-side protection.
For those who are having problem with call reference error:
Plz go to the "php" then --> "php settings" that is in the xampp or wamp server (i'm using it) and check the "allowc call time pass reference". And you'll be facing no error. I've tried it!
I'm getting errors which I thought had been resolved from part 2 but they seem to be appearing again after testing for "please fill in all fields" section.
These are the error messages I am getting are about unidentified index. any help?
I'm getting errors which I thought had been resolved from part 2 but they seem to be appearing again after testing for "please fill in all fields" section.
These are the error messages I am getting are about unidentified index. any help?
Dude, learn to salt your entries! ARGH! Your going to get hacked by anyone that owns an md5 dictionary. Also your not encrypting, your hashing! Learn your stuff dude!
No i got the same problem... and it is very easy to fix. before you make md5 hash you will have to make another varible that takes in the number of your password. like
*/
$password_lengdt = strlen($password);
//then, be careful - it MUST be after, you can put in this
$password = md5($password); //and have the code hashed
Apparently according to my PC, my system data isn't trustworthy, not letting me use the date function, did it ever happen to any of you?if it did is it solvable?
I'm so confused! I try to follow every characters that he typed. only errors result appears in my browser. :( could you make another php login tutorial again? tnx!
guys it keeps telling me this: "Please fill in all fields" after everything i type. even after i fill in all fields. i tried finding the error but i couldnt so i went and retyped the whole script focusly and i still got the same error. please someone help
hey guys im going to copy and paste my code heres the problem i copied him almost exactly but whenever i test it out it keeps saying after i register no matter what i put in "Please fill in all fields" I've tried to find the errors but I can't! Can someone help?
hey guys im going to copy and paste my code heres the problem i copied him almost exactly but whenever i test it out it keeps saying after i register no matter what i put in "Please fill in all fields" I've tried to find the errors but I can't! Can someone help?
@MrPayDay123 It took me effing hours to know what's exactly my problem is...
so in the end I finally did it and here's whut I've did I know it's 9 months late probably ur professional now XD but just in case (--,)b if (isset($fullname)&&isset($username)&&isset($password)&&isset($repeatpassword)) { if (isset($password) == isset($repeatpassword))
I tried putting isset thing-y so tht would make it work XD
Is there a reason to check for user/pass length other than protect from someone entering extremely long data.
You could do something like this:
if(strlen(implode("",$_POST))>200)
Otherwise the things I hate the most is when I want to test a service and don't care about my account and I get errors with to short /to long/ or other things.
I really love your videos and it is pretty clear what you do.
I typed everything you typed and from where it says "25||strlen($fullname)" throughout the rest of the php code everything is showing. How do I get rid of the php code? Meaning make it invisible?
if (strlen($username)>25||strlen($fullname)
did I type it right? Because like I said, it is visible like a text when it is supposed to be invisible like the function.
@Warstu it means there is an extra '{' that does not need to be there - use an IDE that picks these errors up and finds them for you while you're writing the code!
How can I keep a form on the screen with the error message after the data has been submitted and written to the database. It seems that the defualt behavior is for the form to dissapear.
well just have a look at it again and try to understand it... I am getting the logic but.. only when he shows it but if you ask me to make all those check things I'll get fucked up as well :D
Yeah well Its ok. I learned MySql and hooked it up to a database and made an insert script so I have a fully functional Register and login :P I just have to tweak a few things though.
Encryption doesn't work. I hand coded mine and on the database, the user had to login with the encrypted password. Is there a tag that doesn't make a difference in database but still encrypts that password?
This has been flagged as spam show
plzzz help Parse error: syntax error, unexpected ')' in C:\xampp\htdocs\register.php on line 12
theanmol1704 2 weeks ago
Parse error: syntax error, unexpected ')' in C:\xampp\htdocs\register.php on line 12
theanmol1704 2 weeks ago
Why not use the die function when passwords do not match? By using echo won't the code still run?
PktMma 3 weeks ago in playlist Register & Login
Comment removed
MegaFabi1000 4 weeks ago in playlist Register & Login
how to change the echo error msg from top to bottom ?
MiiJagan 4 weeks ago
How do you put the strlen function, if MD5 can convert every text you submit into the it's length of codes
LEilllLEi 1 month ago
dm i hv fixed:P
ChukleStudios 2 months ago
pls help i have the method set to post on form but its still not posting ???
ChukleStudios 2 months ago
could u give me the code for registration page pls
ChukleStudios 2 months ago
So... I can't help but notice that you never had the username checked to see if it was taken. yeah...
Grimwaterfall 2 months ago
BEST tutorial EVER!!!!! thanks alot!!!!
joss4919 2 months ago
i'm a php beginner, but i cand see that you are making the decision for password lenth, with them encrypted ....
:))
even though you're making a great tutorial!
cristianiiacob 2 months ago
I don't know how to thank you. Because you learned me php
Rawaz1995 2 months ago
I'm about to smash my head onto my desk... line 41 error again. I remove the brace and the error remains. What on earth is going on?
smokenfly514 2 months ago
Slow down please.....
smokenfly514 2 months ago
i have always a error in else!
please help meeeeeeeee
TheLoLGameplays7312 2 months ago
@TheLoLGameplays7312
I had the same problem, it means there is an else where there shouldn't be an else. Usually a { bracket is the problem. So if you've done
if() { if(){
} else {
if() {
}
}else
You need to remove the bracket just after the else as you see there's 4 bracket's opening the statement and only 3 closing them. You need an equal amount.
zrowlandjones 2 months ago
Parse error: syntax error, unexpected T_ELSE in on line 28
TheLoLGameplays7312 2 months ago in playlist Περισσότερα βίντεο από τον χρήστη phpacademy
You do it REALLY fast...
ProgramNiceDownload 3 months ago 8
Guys, if you have questions - just join the forum.
9273941658 4 months ago
06:00 better try
input name="username" type="text" maxlength="25"
in html :-p
isocvlad 5 months ago
omg, please help. when i dont you this code:
if (isset($_POST['submit']) && $_POST['submit']){
}
i get unexpected index errors on line 5, 8, 9, 10, and 11 but when i use it i get a wierd unidentified variable error on line 16 but on it its only a { and i got a ending }. its really wierd cause i did exactly as phpacademy did
please help me
moltixx 5 months ago
md5 decryption is possible. The safest think to use it a salt like this:
$password = md5(strip_tags($_POST['password + $salt']));
$salt = 's+(_a*';
Or something like this:
$salt = 's+(_a*';
$password = md5(strip_tags($_POST['$salt + password + $salt']));
BiohazardElements 5 months ago
@BiohazardElements woops thats a little off try this :D
$username = strip_tags($_POST['username']);
$password = strip_tags($_POST['password']);
$keyname = strip_tags($_POST['keyhlodername']);
$email = strip_tags($_POST['email']);
$password2 = strip_tags($_POST['password2']);
$salt = 's+(_a*';
if($submit){
//check for other same usernames if($username&&$password&&$password2&&$email){ $password = md5($password+$salt); $password2 = md5($password2+$salt);
BiohazardElements 5 months ago
@BiohazardElements hi. may i ask, what does this salt do?
joeldelumen 1 month ago
@joeldelumen salt ads a generated code to the md5 hash and it makes it harder for a hacker to get the password, when a user signs up it ad's a string to their password and then runs md5.
BiohazardElements 1 month ago
After filling all fields in the form also I am getting same error
asking me to
please fill in all fields
so please help me
muzzy4friends 5 months ago
Just realized on every single login and register tutorial everybody keeps posting the same problem.
If you get Undefined variable, be sure to put "@" beside the variable
example
@$fullname = strip_tags($_POST['fullname']);
VigilianceAurelious 5 months ago
Comment removed
slam84 6 months ago
Comment removed
slam84 6 months ago
Comment removed
slam84 6 months ago
Comment removed
slam84 6 months ago
With the md5 password, instead of doing that, just do this - if ($fullname&&$username&&$_POST['password']&&$_POST['repeatpassword']&&$age&&$location) .
DuckHouseProductions 6 months ago
Hey Alex. How's it going? I got just a question for you... When I define my $submit variable by the the assignment of the value $_POST['submit'], undefined index comes up! :| I'd decided to escape that error by adding @ at the beggining of the sentence.
tutorialesnet 6 months ago
@tutorialesnet For everybody who's having these errors, use this code instead:
$submit = strip_tags(isset($_POST['submit']));
$username = strip_tags(isset($_POST['username']));
$password = strip_tags(isset($_POST['password']));
$repeatpassword = strip_tags(isset($_POST['repeatpassword']));
Ayzhong 6 months ago
@Ayzhong Thanks alot dude :
soderlund98 5 months ago
what a waste of time, it can be done in around 3 minutes, wtf, it took you 1 hour to explain it.
KaibaCorporationDTDL 6 months ago
cant see my echo lol?
McbainGames 7 months ago
Notice: Undefined variable: submit in D:\wamp
please help to resolve this error
wasifsaleemch 7 months ago
Notice: Undefined variable: submit in D:\wamp
wasifsaleemch 7 months ago
Suas aula são muito confusas.......quem vê esse tipo de video aula esta querendo aprender e não ficar mais confuso.
TheHamilton9624 7 months ago
There is problem about checking password characters ti need to bi like if (strlen($password)>70||strlen($password)<2) { echo "Parola çok küçük veya çok büyük!"; } else { $password = md5($password); $repeatpassword = md5($repeatpassword); }
profhitaf 7 months ago
that password is always going to be 32 after the md5....
jimjimmy1995 7 months ago in playlist Register & Login
What does "Notice: Undefined variable: submit in C:\xampp\htdocs\jonzy\register.php on line 18" mean. When i first go to the register.php page that eror goes up. Some one please help
kwonzomatic 8 months ago 7
@kwonzomatic i would think that means you have a variable $submit that you didn't give a value to
jimjimmy1995 7 months ago in playlist Register & Login
@jimjimmy1995 its alright...i already figured out how to fix it with someone elses comment on here...thanks anyways
kwonzomatic 7 months ago
@kwonzomatic This will fix the undefined variable problems:
$submit = strip_tags(isset($_POST['submit']));
$username = strip_tags(isset($_POST['username']));
$password = strip_tags(isset($_POST['password']));
$repeatpassword = strip_tags(isset($_POST['repeatpassword']));
Ayzhong 6 months ago
Comment removed
madmatthew1 5 months ago
This has been flagged as spam show
@kwonzomatic put right at the top of the page in php tags "error_reporting(0);"
madmatthew1 5 months ago
Comment removed
runizgozilla 4 months ago in playlist Register & Login
@kwonzomatic He is using an old PHP, I think PHP4.
You need to put your code in this:
if($_POST['submit'])
{
if($_POST['username'] !== '' etc)
{
}
}
Uknown231231231 3 months ago
Comment removed
TM8Eyla 2 months ago in playlist phpacademy
This has been flagged as spam show
@kwonzomatic u propably forgot a ; in line 17
TM8Eyla 2 months ago in playlist phpacademy
@kwonzomatic place:
error_reporting (E_ALL ^ E_NOTICE);
in your top php block
BeatboxBBTV 1 month ago 2
@kwonzomatic you can "escape" this error by doing following code:
if(isset($_POST['submit'])
Basically you now are going to check if that post-variable is set.
230719880 2 weeks ago
checking the username lenght would be much easier to do in html with maxlength="20"
daeheadshot 8 months ago
@daeheadshot Yes, however it's not about ease, it's more about protecting the database from user-generated errors. maxlength is a client-side "protection", so-to-speak. The MySQL limit is a minimum version of a server-side protection.
insightrorevamped 8 months ago in playlist PHP Login
For those who are having problem with call reference error:
Plz go to the "php" then --> "php settings" that is in the xampp or wamp server (i'm using it) and check the "allowc call time pass reference". And you'll be facing no error. I've tried it!
TheAdil745 9 months ago
as ninjafoxinteractive you could just write maxlength in the tag like this
input type='text' name=' before
input type='text' name='fullname' maxlength=25 after
save yourself time from writing a whole bunch of if statements >.>"
RandomThai 9 months ago
Comment removed
RandomThai 9 months ago
This has been flagged as spam show
I'm getting errors which I thought had been resolved from part 2 but they seem to be appearing again after testing for "please fill in all fields" section.
These are the error messages I am getting are about unidentified index. any help?
nickynae 10 months ago
I'm getting errors which I thought had been resolved from part 2 but they seem to be appearing again after testing for "please fill in all fields" section.
These are the error messages I am getting are about unidentified index. any help?
nickynae 10 months ago
merci bien
delpiero8401 10 months ago
Mate, you can also set the Maxlength = 25 in the input tag
so that you don't have to go through a lot of effort trying IF it.
ninjafoxinteractive 10 months ago
Comment removed
RS777able 10 months ago
hey can you please post the code i messed up somehere and cant get it to work :(
UndeniableLust 10 months ago
Dude, learn to salt your entries! ARGH! Your going to get hacked by anyone that owns an md5 dictionary. Also your not encrypting, your hashing! Learn your stuff dude!
Fridayitis 10 months ago
Dude, learn to salt your entries! ARGH! Your going to get hacked by anyone that owns an md5 dictionary.
Fridayitis 10 months ago
This has been flagged as spam show
Why we need a, latin bitch busizz4me.info
DonsanUsake569 11 months ago
you can use "now()" rather than using $date = date("Y-m-d");
elvisniperx 11 months ago
you can you "now()" rather than using $date = date("Y-m-d");
elvisniperx 11 months ago
Comment removed
AndreeaaSTV 1 year ago
Great tutorials as always. Congrats and thank you.
jackrios2 1 year ago
its a bit annoying you keep saying that md5 is encryption, its not.. Its hashing
DjonnxNeller 1 year ago
@DjonnxNeller Oh no!
anthonytheperson 11 months ago
can comeone send me the code please???
haithofee 1 year ago
ERRRROSSS!!!!!!!!!!!!!!!!!!!!!!! :@
haithofee 1 year ago
f uk this too much brackets and deleting!!!!!!!!!!!!!!
haithofee 1 year ago
@squernerproductions
Be sure that after every echo command is a ; (semicolom or something) so like:
echo ("Test");
Fastjur 1 year ago
it never says please fill in all fields
Arciijs 1 year ago
could you post the final code for this one , too many deleting and too many bracket
Thank you
alipadar 1 year ago
This has been flagged as spam show
Heck out the thousands of profiles for Naughty women mworld5.info
TONIACLARA 1 year ago
Great great great tutorial.
Thanks.
palashmitra000 1 year ago
young man you seem to know alot but you should prepare your courses better than that...
alecab 1 year ago
Ok I have done it all , and it dont work as intended.
It says my password is to long, its becuse the md5 encrypted password make it longer then 25 characters.
So I am guessing one have to md5 encrypt it after one has done the check of strlen on the password, correct?
SwampDragons 1 year ago
@SwampDragons yes
t3po7re54 1 year ago
@SwampDragons
/*
No i got the same problem... and it is very easy to fix. before you make md5 hash you will have to make another varible that takes in the number of your password. like
*/
$password_lengdt = strlen($password);
//then, be careful - it MUST be after, you can put in this
$password = md5($password); //and have the code hashed
//and then
if(($password_length>25)||($password_length<6)){}
steverock85 1 year ago
@steverock85
Sorry for my bad grammar:/
"then, be careful - it MUST be after, you can put in this" is supose to be
"then after, you can put this"
You put $password_lengdt = strlen($password); before $password = md5($password);
if you don't you will getg the length of the hashed code you made....
ohh what ever, it is common sense anyway.... sorry if this confused you...
steverock85 1 year ago
@SwampDragons
ohhh he accually fixed this later in the tutorial, my bad.... note to self, watch all if you get into trouble....
steverock85 1 year ago
Apparently according to my PC, my system data isn't trustworthy, not letting me use the date function, did it ever happen to any of you?if it did is it solvable?
zemma1992 1 year ago
@zemma1992 use
date_default_timezone_set('UTC');
before youre first function
irclog 1 year ago
This has been flagged as spam show
She is hot and sexy wonna meet her gettop5.info
rvfasdsanzczs 1 year ago
I'm so confused! I try to follow every characters that he typed. only errors result appears in my browser. :( could you make another php login tutorial again? tnx!
gervic23 1 year ago
you're trial and error tutorial makes us confused!!!
PYourSong 1 year ago
what are these characters after typing "if (strlen($username)>25(????) please i need your help,,
PYourSong 1 year ago
Comment removed
shawnpaullouie 1 year ago
guys it keeps telling me this: "Please fill in all fields" after everything i type. even after i fill in all fields. i tried finding the error but i couldnt so i went and retyped the whole script focusly and i still got the same error. please someone help
speedysb100 1 year ago
This has been flagged as spam show
hey guys im going to copy and paste my code heres the problem i copied him almost exactly but whenever i test it out it keeps saying after i register no matter what i put in "Please fill in all fields" I've tried to find the errors but I can't! Can someone help?
MrPayDay123 1 year ago
hey guys im going to copy and paste my code heres the problem i copied him almost exactly but whenever i test it out it keeps saying after i register no matter what i put in "Please fill in all fields" I've tried to find the errors but I can't! Can someone help?
MrPayDay123 1 year ago 6
@MrPayDay123 nvm XD its not letting me but if its not to much trouble if u could plz message me your code so i can copy and paste??
MrPayDay123 1 year ago
@MrPayDay123 me too!
speedysb100 1 year ago
@MrPayDay123 where's the code? I maybe able to help
zemma1992 1 year ago
@MrPayDay123
I got the same error please somebody help
scaitime 11 months ago
@MrPayDay123 maybe you missed or misplaced a bracket in the conditional statements -- If and else.
ninjafoxinteractive 10 months ago
@MrPayDay123 if you send me your email once i finish making it ill send you the files so you can compare and find your errors if you still need it
korvlord 8 months ago
@MrPayDay123 You need to learn to debugg mate. There are techniques for that, just google it.
ZTOID 7 months ago
@MrPayDay123 It took me effing hours to know what's exactly my problem is...
so in the end I finally did it and here's whut I've did I know it's 9 months late probably ur professional now XD but just in case (--,)b if (isset($fullname)&&isset($username)&&isset($password)&&isset($repeatpassword)) { if (isset($password) == isset($repeatpassword))
I tried putting isset thing-y so tht would make it work XD
VigilianceAurelious 5 months ago
Man u delete some things which i am getting an error :(
Rogueixpresents 1 year ago
where can i download the project files?
Thetechsite1 1 year ago
I always get this "unidentified index" error
I've followed everything you did.
rickyb0i 1 year ago
Is there a reason to check for user/pass length other than protect from someone entering extremely long data.
You could do something like this:
if(strlen(implode("",$_POST))>200)
Otherwise the things I hate the most is when I want to test a service and don't care about my account and I get errors with to short /to long/ or other things.
I really love your videos and it is pretty clear what you do.
nattsurfaren 1 year ago
what is wrong with my php coding :(
techuniquekeys. co.uk / help.txt
r4d10mc 1 year ago
help. 5:38
I typed everything you typed and from where it says "25||strlen($fullname)" throughout the rest of the php code everything is showing. How do I get rid of the php code? Meaning make it invisible?
if (strlen($username)>25||strlen($fullname)
did I type it right? Because like I said, it is visible like a text when it is supposed to be invisible like the function.
mcgyvr2009i 1 year ago
I will send the whole code that I have written in a PM.
mcgyvr2009i 1 year ago
It's really annoying that I have to pause all the fucking time. Good tutorial except for that though.
Bagurz 1 year ago
Comment removed
kato3000 1 year ago
Comment removed
kato3000 1 year ago
adding a "maxlength='number here'"
in the <input
at the text fields is bether than using if's for it. Just a note...
katt157 1 year ago
Why do i keep getting this error
"Notice: Undefined index: submit in (wamp path) on line 14"
I must make a if($_POST['submit']) and then set the variable or else it doesnt work
ihapistorique 1 year ago
i dont understand is there a website with codes on it for us to look at? PLEASE HELP!
cm1996 1 year ago
your tutorials rock!
tianclch 1 year ago
lol, i had to google existence, looks like we were both wrong =)
tropicallanterns 1 year ago
Parse error: syntax error, unexpected '{'
what does this mean
Warstu 1 year ago
@Warstu It means you have an extra curly brace where not needed
boburmum1 1 year ago
@Warstu I believe it means that you accidentally used a { instead of a (. Did you get it fixed?
eamileak 1 year ago
@Warstu olhe o código e veja o que tu escreveu de errado , mas olhe com atenção .
.
look at the code and see what you wrote wrong, but look carefully.
cesaraugustorodrigue 1 year ago
@Warstu it means there is an unexpected {
flairza 1 year ago
Comment removed
kato3000 1 year ago
@Warstu That you didnt close your bracket right
sanderxdxd 1 year ago
@Warstu error is useless without the code
EnvyMyPower 1 year ago
@Warstu it means there is an extra '{' that does not need to be there - use an IDE that picks these errors up and finds them for you while you're writing the code!
thelctrclengnr 1 year ago
i need help with this
Warstu 1 year ago
simple md5 password hashing can be cracked.
You need to add salt to make it more secure, something like this:
$salt = "567ujasd3";
$password = md5($salt.$password);
zakne0ne 1 year ago
Dude you fucked me when u delete some text im so confuse now :( and now when i type any pass this say text of maximum and minimum caracter
hesawisa 1 year ago
I think you need to redo this tutorial. Whenever you delete something, I fucked up and had to do the whole thing over -.-..
IXxJustinxXI 1 year ago
Just wondering if anyone else is getting the error
Notice: Undefined index: submit in (Directory) on (line)
if so how do i resolve this?
18sanj 1 year ago
The video works fine here.
ramlenaj1 1 year ago
Video not work
hmmm
Anybody need alternative url
Only video part 3 not work
gotostereo 1 year ago
Hooray. Happy Birthday "This Video" Your age is: 1year
You were uploader 09-02-20 and today is 10-02-20
ExePalikuonis 1 year ago
How can I keep a form on the screen with the error message after the data has been submitted and written to the database. It seems that the defualt behavior is for the form to dissapear.
princeknickers 2 years ago
OMG. I just completely FUCKED up on this tutorial. FUCK FUCK D;:: -.--.-.--.- shit. I was looking forward to this.. :(
Acceptable76 2 years ago
well just have a look at it again and try to understand it... I am getting the logic but.. only when he shows it but if you ask me to make all those check things I'll get fucked up as well :D
r3sp3c791 2 years ago
Yeah well Its ok. I learned MySql and hooked it up to a database and made an insert script so I have a fully functional Register and login :P I just have to tweak a few things though.
Acceptable76 2 years ago
howcome this video will not load ??
rickybender 2 years ago
Comment removed
rickybender 2 years ago
guys!
can you please help me? im trying to upload my files to an online host, but i can't connect there to mysql. can anyone give me a connectable host?
thanks!
arielschon11 2 years ago
What are you talking about? Nobody can simply give you a host to connect to. ???
aaron1a12 2 years ago
lol... i can get you a domain that has a simple interface for sql.. thats either your localhost.. or 000webhosts
digesteddonkey 2 years ago
Encryption doesn't work. I hand coded mine and on the database, the user had to login with the encrypted password. Is there a tag that doesn't make a difference in database but still encrypts that password?
Chicken488 2 years ago
Comment removed
GogMagog9 2 years ago
I'm kind of new at this, but don't you need a different variable for the new encrypted passwords? I could be wrong
xaldin11 2 years ago
great tutorial
9stars
hugovasto 2 years ago 11
Comment removed
katt157 1 year ago
Yeah...I am sure that will be corrected out in part 4...Thanks Alex for this tut anyway and I really highly appreciate your efforts!
omanoman98 2 years ago
ATTENTION!!!
Do watch part 4 for a small mistake in this part 3.
You did everything right, even if it says "Password must be between 6 to 25 characters".
Just comment out the hashing with // and continue.
wolf69wolf69 2 years ago