Jump to content

f14000

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

f14000's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. OMG i tried to recreate the 2 files as you recommended and it worked, so, as you already said, I figured there's something wrong with the whole page script and I saw I had a non-closed form above >.< THANKS MAN! 8)
  2. I did that but it's still not redirecting me from register.php to sendaccinfo.php ...
  3. No it doesn't , but that's what I want , I want to redirect me to sendaccinfo.php and about the condb it's configured perfectly !
  4. Register.php : <div align="center"></br></br></br></br></br></br></br></br> <form method="post" action="sendaccinfo.php" name="register"> <table> <tr> <td><strong><font color="#8A2BE2">noTrebitel:</font></strong></td><td><input type="text" name="username" maxlength="12"/></br></td> </tr> <tr> <td><strong><font color="#8A2BE2">naroLa:</font></strong></td><td> <input type="password" name="pass"/></br></font></td> </tr> <input name="userip" value="<? echo $_SERVER['REMOTE_ADDR']; ?>" type="hidden"/> <tr><td></td><td><div align="right"><input type="submit" value="peGistrirai cE"/></div></td></tr> </table> </form> </div> And here is the login.php which I renamed to sendaccinfo.php : <? $ip = $_POST['userip']; $username = $_POST['username']; $pass = $_POST['pass']; include 'condb.php'; $query = "SELECT ip FROM users WHERE ip='$ip'"; $result = mysql_query($query); while($row = mysql_fetch_assoc($result)){$match=true;} if (isset($match)){$msg="weche si se registriral!"; }else{$query = "INSERT INTO users (ip, username, password) VALUES('$ip', '$username', '$pass')"; mysql_query($query) or die(mysql_error()); $msg="Registrira se uspeshno!"; } echo "<div align='center'><font color='#8A2BE2'>$msg</font></div>"; mysql_close(); ?>
  5. Yes I am trying to send data (this is not the whole code), but when I click it , it just changes the link to : "register.php?(somestuffhere)" and does not redirect me, why is that? I need to be redirected upon clicking !
  6. <form method="post" action="login.php" name="register"> <input type="submit" value="peGistrirai cE"/> </form>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.