Login-Logout with session PHP Practice for Beginners
Submitted by jkev on Thursday, January 3, 2013 - 08:47.
Language
This is a simple PHP sourcecode the Enables you to know how to login , logout with using sessions for security this sourcecode may help beginners want to learn Php.. hope this sourcecode my help you a Lot
database_name: database
include in the zip file..
thank you
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Comments
change password source code.
- <?php
- include("includes/header.php");
- $page_title="changepassword";
- include('connection.php');
- $rId = $_POST['submitted'];
- if(($_POST['newpassword']) == ($_POST['conpassword'])){
- $password = $_POST['change'];
- $npassword = $_POST['newpassword'];
- $cpassword = $_POST['conpassword'];
- $old_pass = $row['Pass'];
- if($old_pass == $password){
- if($subquery){
- $update= "your password has been change successfully<br/>from ".$password." to ".$npassword;
- }
- else{
- echo "update is not ok ";
- }
- }
- else{
- }
- }
- }
- else{
- $update = "your password do not match";
- }
- }
- ?>
- <h1 style="font-size:50px; text-align:center; color:green;" id="sub1">A.B.U</h1>
- <p style="font-size:20px; text-align:center; color:green;">Change your password here</p>
- <h4 align="center">
- </h4>
- <form action="rchange_password.php" method="POST">
- <div align="center">
- <h4 style="color:green">
- <?php
- echo $update;
- }
- ?>
- </h4>
- <input type="password" required name="change" size="30" placeholder="Old password" ></br></br>
- <input type="password" required name="newpassword" size="25" placeholder="New password" ></br></br>
- <input type="password" required name="conpassword" size="25" placeholder="Confirm password" ></br></br>
- <p><input id="sub" type="submit" value="Send"> <a class="ancor" href="user_activities.php?rId=<?php if(isset($_GET['id'])){ echo ($_GET['id']);} ?>"><input type="button" value="click back" id="sub"></a></p>
- <input type="hidden" name="submitted" value = "<?php if(isset($_GET['id'])){ echo base64_decode($_GET['id']);} ?>" />
- </div>
- </form>
- <br>
- <br>
- <br>
- <br>
- <br>
- <?php
- include("includes/footer.php");
- ?>
- </body>
- </html>
not working
when i try to run this cold on my machine it just refreshes the page. any help please?
This code is very nice and
This code is very nice and simple , it helps me as new php learner.
Add new comment
- Add new comment
- 555 views