A community of PHP developers offering assistance, advice, discussion, and friendship.
Skip to content
Moderator: General Moderators
Post by gilsontomy » Sat May 03, 2014 2:13 am
Code: Select all
<?php session_start(); if (isset($_POST['submit'])) { $username=$_POST['user']; if($username==="gilson"){ $_SESSION['user']=$username; header("Location: ab.php") } } ?>
Post by requinix » Sat May 03, 2014 3:34 am
Return to “PHP - Code”