Jump to content

regenx

Members
  • Posts

    137
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by regenx

  1. And for login? :) Someone can share a login script for both WOTLK and Cataclysm (I mean for expansion 2 and 3). Thank you. For Login script you just need to connect to auth, right? Who can help me?

  2. Wh

    The best method are prepared statements

    What do you mean with prepared statements?

    btw...

    -- this is wrong way

    $string = mysql_real_escape_string($string);

    $string = stripslashes($string);

    $string = strip_tags($string);

    -- this is safe way

    $string = stripslashes($string); // Keep your usernames clean

    $string = strip_tags($string); // Kill all tags like html tags, etc..

    $string = mysql_real_escape_string($string); // Anti-injection

  3. Hi, with this php function you can stop 99% from SQL injections on your php register page.

    From today you are safe! Trust me. I recommend you to use this function...

    function madSafety($string) {

    $string = stripslashes($string);

    $string = strip_tags($string);

    $string = mysql_real_escape_string($string);

    return $string;

    }

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.