Skip to main content

Php function to format the input values before inserting to the Db tables



Given below is a simple php function to format the input to the database inorder to avoid the SQL injection.



function formatInput($str_value){
//function to format strings in a query
$str_value = (!get_magic_quotes_gpc()) ? addslashes($str_value) : $str_value;
$str_value = trim($str_value);
$str_value = ($str_value != "") ? "'" . $str_value . "'" : "NULL";
return $str_value;
}


As you can see the function checks whether the magic quote feature of server is on and if not it adds slashes to the single and double quotes. If magic quotes is on the input value t the function will be having the single and double quotes escaped with a backslah.

before returning the value, single quotes are appended and prepending to the text.



SAMPLE USAGE


$myQry=" SELECT * FROM TBL_INVENTORY WHERE PURCHASE_CODE = ".formatInput($purchase_code);



Comments

Popular posts from this blog

Sachin Tendulkar's emotional farewell Speech at Wankhede Stadium, Mumbai - Full Text and Video

Full Text and Video of Sachin Tendulkar's emotional farewell Speech on Nov 16, 2014 On November 16, 2013 - Sachin Ramesh Tendulkar played his last international cricket match against West-Indies at the at Wankhede Stadium, Mumbai. After the match he gave an emotional farewell speech. No one would be able forget the speech. The eyes of the gathered people were tearfull. Through out the speech Sachin thanked each and everyone who supported and encouraged him to build up his glorius career which spanned 24 years.

How to add "Link to this page" option under blogger posts?

Steps in adding Link to this page to your blogger posts Links to your page can improve your page rank. So it is a good option to add HTML code for linking to your web page. So that reader can copy and paste it on their web page. if another website links to your web page, this is considered an external link to your website. External links to your website are the most important source of ranking power and in SEO terminology it is considered as third party ranking vote for your page.

PETMAN Robot from Boston Dynamics

PETMAN from Boston Dynamics Here comes another amazing robot from Boston Dynamics . PETMAN is the name given to this wonderful anthropomorphic robot. This will be used for testing special clothing used by US military personnel. Features of PETMAN Amazing body balance: robot balances itself as it walks, squats and does calisthenics.


Urgent Openings for PHP trainees, Andriod / IOS developers and PHP developers in Kochi Trivandrum Calicut and Bangalore. Please Send Your updated resumes to recruit.vo@gmail.com   Read more »
Member
Search This Blog