Thank you very much. I have learned a lot again from this tutorial. Just one remark for others. I had to change the security levels in my Google chrome account for the mail function to work.
Thank you so much for all you're tutorials! It hepls alot who want's to learn about programming! Always Watching your videos And Already SUBSCRIBED! more Power!
You have earned a new subscriber. Your channel is a mine of information and resources. the message is not being sent, it says "something went wrong. please try again"
Great tutorial! I have one issue. it is giving me a blank green result box when I click the reset button on the reset password form. Can you help me figure out why this is? Thank you for these great tutorial videos. I am learning a lot from you!
Never mind. I fixed it somehow. Not sure what I did, but I made sure all my '$femail' variables matched up throughout the entire forgot portion of the script. I seem to be notorious at fixing my own mistakes.. Anyway, thank you again for the wonderful educational videos!
Thank you ..... Hello Professor ... My request is for me to form sub-sections when clicking on the sub-sections, you change the form of the form ... For example, clicking on the Inquiries section shows the special input form for the section ... If you press the car section shows the special input form for the section ........
please wolfmania this tutorial is nice... but i would love to request if you can make a tutorial on when the user is about to return to the website after they have click on the reset password link on their email it will popup a page on the index.php where he they can put their new password.... rather than to create a page where they can change their password.... i mean like making a popup... thank you
Hey! :) So I have a problem. All of this code works perfectly on my local server, but when I upload this to a live server, upon log-in, it redirects me to the profile page, but gives a error 500 message that says, "is currently unable to handle this request. HTTP ERROR 500" Can you help me figure out why I'm getting this error? Thank you in advance. Your tutorials are amazing by the way!
@@DCodeMania I've triple checked my directory and all the files that make this work, are there in the root folder: action.php, config.php, login.php (for this tutorial it's index.php), logout.php, session.php, profile.php. Those are the files for this tutorial, minus the change from index.php to login.php. The code for the index.php in this tutorial is the same code for the login.php
@@DCodeMania Also, the guy I spoke to on the phone regarding hosting, he mentioned to me that maybe my ajax was not reading the "index" of whatever file the script was being redirected to? here's my script for ajax with login part: $("#login").click(function(e){ if (document.getElementById('login-frm').checkValidity()){ e.preventDefault(); $.ajax({ url:'action.php', method:'post', data:$("#login-frm").serialize()+'&action=login', success:function(response){ if (response==="ok"){ window.location='profile.php'; } else{ $("#alert").show(); $("#result").html(response); } } }); } return true; });
Fatal error: Uncaught Error: Call to a member function bind_param() on bool in D:\xampp\htdocs\php_registration\action.php:95 Stack trace: #0 {main} thrown in D:\xampp\htdocs\php_registration\action.php on line 95
Sorry for late guys!! Actually I was not feeling well from last 3, 4 days thats why I've uploaded this video late....!!
Excellent explanation! Keep it on with uploading more videos on different topics.
Completed today 💯 thanks for sharing your knowledge, I’m your new subscriber. 😍
Thank you very much. I have learned a lot again from this tutorial. Just one remark for others. I had to change the security levels in my Google chrome account for the mail function to work.
Yours videos are gem❤️❤️❤️
Thank you so much for all you're tutorials! It hepls alot who want's to learn about programming! Always Watching your videos And Already SUBSCRIBED! more Power!
🙏🙏🙏😊😊😊
You have earned a new subscriber. Your channel is a mine of information and resources. the message is not being sent, it says "something went wrong. please try again"
Thanks!! Have you ever used phpmailer??
@@DCodeMania yes! same issue. I used phpmailer
Great tutorial! I have one issue. it is giving me a blank green result box when I click the reset button on the reset password form. Can you help me figure out why this is? Thank you for these great tutorial videos. I am learning a lot from you!
Never mind. I fixed it somehow. Not sure what I did, but I made sure all my '$femail' variables matched up throughout the entire forgot portion of the script. I seem to be notorious at fixing my own mistakes.. Anyway, thank you again for the wonderful educational videos!
geeno123 may be your ajax response didn't catching response from the action.php check properly...
I somehow fixed it. Made sure all my '$femail' variables were the same through out the forgot portion of the script. I works now. I got the email :)
👍👍👍👍
Sir where I can download the file of phpmailer? Thanks
Thank you .....
Hello Professor ... My request is for me to form sub-sections when clicking on the sub-sections, you change the form of the form ...
For example, clicking on the Inquiries section shows the special input form for the section ... If you press the car section shows the special input form for the section ........
What you exactly want to do???
@@DCodeMania
This idea I like to add in my site and I did not find the solution I hope you are the solution my dear friend
please wolfmania this tutorial is nice... but i would love to request if you can make a tutorial on when the user is about to return to the website after they have click on the reset password link on their email it will popup a page on the index.php where he they can put their new password.... rather than to create a page where they can change their password.... i mean like making a popup... thank you
Sir can you please make a video on how to send email activation link in email for login using phpmailer?
Okay! I'll upload in next video
Hi! Where to find this phpmailer on uor chanel?
Bro need change password if user is logged-in .... like a profile. ..... ?
i like! please add link of source code
Hey! :) So I have a problem. All of this code works perfectly on my local server, but when I upload this to a live server, upon log-in, it redirects me to the profile page, but gives a error 500 message that says, "is currently unable to handle this request.
HTTP ERROR 500" Can you help me figure out why I'm getting this error? Thank you in advance. Your tutorials are amazing by the way!
May be you have not uploaded all files in your server check once again carefully!!!!!
@@DCodeMania I've triple checked my directory and all the files that make this work, are there in the root folder: action.php, config.php, login.php (for this tutorial it's index.php), logout.php, session.php, profile.php. Those are the files for this tutorial, minus the change from index.php to login.php. The code for the index.php in this tutorial is the same code for the login.php
@@DCodeMania Also, the guy I spoke to on the phone regarding hosting, he mentioned to me that maybe my ajax was not reading the "index" of whatever file the script was being redirected to? here's my script for ajax with login part:
$("#login").click(function(e){
if (document.getElementById('login-frm').checkValidity()){
e.preventDefault();
$.ajax({
url:'action.php',
method:'post',
data:$("#login-frm").serialize()+'&action=login',
success:function(response){
if (response==="ok"){
window.location='profile.php';
}
else{
$("#alert").show();
$("#result").html(response);
}
}
});
}
return true;
});
I'm getting '''Something went wrong, please try again" . What could be the problem?
Please my update password is not working. Is not getting the email and token
links from the database
Sir, can I download source code from this tutorial ?
You have to write it by watching it....!!
Sir link for phpmailer? Thanks
how can i get phpmailer file ......please
link the source code please, thanks
Fatal error: Uncaught Error: Call to a member function bind_param() on bool in D:\xampp\htdocs\php_registration\action.php:95 Stack trace: #0 {main} thrown in D:\xampp\htdocs\php_registration\action.php on line 95