Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~262 People Reached
Favorite Forums
Favorite Tags
php x 11
Member Avatar for tarekwiz

Here Is My Index.php <form action="login.php" method="post"> Username: <input type="text" name="usname"/></br> Password: <input type="text" name="pwname"/></br> <input type="submit" /> </form> And Here is my login.php <?php $con = mysql_connect("localhost","root",""); mysql_select_db("logindb", $con); $user = $_POST['user']; $pw = $_POST['password']; $sql = "select username,password,email from users where username='" . $user. "' and password='" . …

Member Avatar for diafol
0
262