is this the proper use of mysql_real_escape_string() to prevent sql injections?
Posted on
16th Feb 2014 07:03 pm by
admin
i was wondering is this the proper use of mysql_real_escape_string() to prevent sql injections? any help greatly appreciated. thanks. derek
Code: <?php
include("connect1.php");
session_start(); // this is the session declaration , one per page.
$u = trim($_POST['username']);
$p = trim($_POST['password']);
$logoff = $_GET['logoff'];
$hack = $_GET['hack'];
if($logoff){
unset($_SESSION['userid']);
//session_destroy(); //commented out gets rid of the having to login twice.
$message = "You have been logged off";
}
if($hack){
$message = "Naughty Naughty!"; // COOL
}
// escape username and password for use in SQL
$u = mysql_real_escape_string($u);
$p = mysql_real_escape_string($p);
// if fields username and password have contents, then...
if($u && $p){
$query = mysql_query("SELECT * FROM table2 WHERE username = '$u' AND password = '$p'");
$result = mysql_fetch_array($query); //creates array called result,//notice we dont need a while loop here.
if($result['username']){
$message = "You have been logged in";
$_SESSION['userid'] = $result['username'];
header("Location:old.mainsite.php");
exit;
}else{
$message = "You do not exist on the system";
}
}
?>
No comments posted yet
Your Answer:
Login to answer
259
53
Other forums
Best way to read this text file.
Hi.I am planning to make a small application in C# to convert the players from Football manager 2010
search query in mysql in php problem
my search query wont work, i know, that my codes are correct.please help
Code: [Select]&l
please fix the error
What is the error in the below code ???
Line number On/Off | Expand/Contract <?php
PHP submit form script causing blank page
Im trying to submit a form using this script, however nothing shows up on the page, does anyone know
close site for maintenance
i get a tutorial, saying the following code can put our site offline, and only the developer can vie
Unable to customise toolbar in FCK
using variables in another page
I have a test database set up on localhost. I have a form that I can type a name into, hit the butto
Weekly Calendar
Hi, I am looking at creating a weekly calendar. The calendar will read from Monday - Sunday. Does an
Where do I put CRON code
So I've figured out alot about how to automatically run a php function. I can't figure out where to
How to add an image/C++ OpenGL?
Hi,
I have been trying to look online for this and, so far, I haven't found anything usef