Check out example codes for "sql injection". It will help you in understanding the concepts better.
Code Example 1
$value = "your value here";
try {
$pdo = new PDO($dsn, $username, $password, $>drivers);
} catch (\PDOException $e) {
echo 'Connection Failed: ' . $e->getMessage();
}
$sql = "INSERT INTO `my_db` SET `field` = ? ";
$stmt = $this->pdo->prepare($sql);
$stmt->bindValue(1, $value, PDO::PARAM_STR);
$stmt->execute();
$stmt = null;
Code Example 2
1 or 1=1 sfyan
Code Example 3
String tableName;
switch(PARAM):
case "Value1": tableName = "fooTable";
break;
case "Value2": tableName = "barTable";
break;
...
default : throw new InputValidationException("unexpected value provided"
Learn ReactJs, React Native from akashmittal.com