No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
Re: Hey This was very interesting to read, I had been wondering for a long time on how to make a IM of my own but this really does not help much could someone show me where to go to learn about this style of coding plz it would help me … | |
[code=php]<?php require_once("Actions/config.php"); if(isset($_POST['email_address']) && $_POST['password']){ $sql = "SELECT * FROM $tbl_name WHERE email_address ='$email_address' and password ='$password'"; $result = @mysql_query($sql); // Mysql_num_row is counting table row $count = @mysql_num_rows($result); // If result matched $myusername and $mypassword, table row must be 1 row if($count==1){ // Register $myusername, $mypassword and redirect to … |