What and How possible injection in PHP and mysql?

Answers were Sorted based on User's Feedback



What and How possible injection in PHP and mysql?..

Answer / ram

sql injection can be given along with user supplied data.
Examples of sql injection:

' or 1=1 --
' OR '1'='1. these sort of input could break into the code
by tricking the sql query.

Is This Answer Correct ?    9 Yes 1 No

What and How possible injection in PHP and mysql?..

Answer / tarun

first of all tell me what is injection here...........

Is This Answer Correct ?    1 Yes 0 No

What and How possible injection in PHP and mysql?..

Answer / dinesh g

What is Injection?
When a user is inserting any value into the text box, we
store that in a variable and place it in a query. If the
user also types any query within the text box our mysql will
run the query.

ex :

INSERT INTO students (name) VALUES ('Dinesh'); DROP TABLE
Students;

Here the user types his name as Dinesh also he write the
next query to drop the table. so this table is dropped if it
is present.

TO avoid it we use addslashes() else
mysql_real_escape_string() methods to escape from the users
query.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More PHP Interview Questions

How to include a file to a PHP page?

0 Answers  


Explain include(), include_once, require() and require_once?

0 Answers  


Do you know what is the function mysql_pconnect() usefull for?

0 Answers  


What is == and === in php?

0 Answers  


How do you develop your own PHP extension ?

2 Answers  






What is if isset ($_ post submit )) in php?

0 Answers  


when ever the user logged in the database table the current registered date will be appeared

3 Answers  


What is $_session in php?

0 Answers  


What is csrf cookie?

0 Answers  


What is the difference between runtime exception and compile time exception?

0 Answers  


How do http requests work?

0 Answers  


Write a program to show the joining of two strings in php?

0 Answers  


Categories