What is the most secure way to implement "Remember Me" functionality in PHP?

Asked by Last Modified  

1 Answer

Learn PHP

Follow 1
Answer

Please enter your answer

Trainer

Use PHP Cookie <?php session_start(); if(!empty($_POST)) { $conn = mysqli_connect("localhost", "root", "", "blog_samples"); $sql = "Select * from members where member_name = '" . $_POST . "' and member_password = '" . md5($_POST) . "'"; $result = mysqli_query($conn,$sql); $user = mysqli_fetch_array($result); if($user)...
read more
Use PHP Cookie <?php session_start(); if(!empty($_POST["login"])) { $conn = mysqli_connect("localhost", "root", "", "blog_samples"); $sql = "Select * from members where member_name = '" . $_POST["member_name"] . "' and member_password = '" . md5($_POST["member_password"]) . "'"; $result = mysqli_query($conn,$sql); $user = mysqli_fetch_array($result); if($user) { $_SESSION["member_id"] = $user["member_id"]; if(!empty($_POST["remember"])) { setcookie ("member_login",$_POST["member_name"],time()+ (10 * 365 * 24 * 60 * 60)); setcookie ("member_password",$_POST["member_password"],time()+ (10 * 365 * 24 * 60 * 60)); } else { if(isset($_COOKIE["member_login"])) { setcookie ("member_login",""); } if(isset($_COOKIE["member_password"])) { setcookie ("member_password",""); } } } else { $message = "Invalid Login"; } } ?> read less
Comments

Related Questions

what is a file handling
File handling is an important part of any web application. You often need to open and process a file for different tasks. PHP has several functions for creating, reading, uploading, and editing files....
Mayank
it is charge for online course or not?
I found out from my experience that if there is no charge for the course, the students are not serious and even bunk classes. Also, the fees are one of the ways you can repay what a teacher provides you,:)
Farheen
How can we complete PHP language in 30 days?
First at all as a php trainer i would ask if you know html,csss,javascript nicely or not. As per me you should be at mediator level in those things to start php. Ok hopping you know that. Then go for some...
Veerendra
0 0
6
What are the ideas for final year projects based on PHP?
Social Networking System, College Management System, Inventory Management System, eCommerce portal etc.
Nishit
0 0
5

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Try to clear up the basics, if basics are clear then you can go ahead with any difficult problem
Hey guys, To all the students i just want to convey that just clear up your basics so that they can help you solve anyu problem and you would achieve a great success. Regards, Ishani Chakraborty

PHP
It is the base for many of the ecommerce websites. Many of the CMS develpoped in PHP platform.If programming cant done inititally try to think for logics and develop writing algorithms. Any doubts divyaravindiran@gmail.com.

Web Technology Tutorial
Web Technology has 2 category Front End (HTML,CSS,JS Etc) Back End/Server Side (PHP,JSP,ASP,ROR Etc) Front End technologies are - HTML, CSS, Bootstrap, Javascript, jQuery etc. Using front end...

What Are IT Industries Performance Metrics?
1. Outstanding Expectation: Eligible to get Promotion easily and good salary hike. Always preferrable to go abroad. 2. Exceed Expectation: Can get Promotion as per schedule of company with good salary...

Top Programming Languages 2017: Every Beginner Should Learn
Every year a plethora of job opportunities are being created for skilled programmers. So if you are thinking of honing your coding skills it is really a bright idea. But with so many programming languages...

Recommended Articles

Almost all of us, inside the pocket, bag or on the table have a mobile phone, out of which 90% of us have a smartphone. The technology is advancing rapidly. When it comes to mobile phones, people today want much more than just making phone calls and playing games on the go. People now want instant access to all their business...

Read full article >

Software Development has been one of the most popular career trends since years. The reason behind this is the fact that software are being used almost everywhere today.  In all of our lives, from the morning’s alarm clock to the coffee maker, car, mobile phone, computer, ATM and in almost everything we use in our daily...

Read full article >

Business Process outsourcing (BPO) services can be considered as a kind of outsourcing which involves subletting of specific functions associated with any business to a third party service provider. BPO is usually administered as a cost-saving procedure for functions which an organization needs but does not rely upon to...

Read full article >

Information technology consultancy or Information technology consulting is a specialized field in which one can set their focus on providing advisory services to business firms on finding ways to use innovations in information technology to further their business and meet the objectives of the business. Not only does...

Read full article >

Looking for PHP Classes?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you