Understanding PHP MySQL Prepared Statements Security

Asked 1 years ago, Updated 1 years ago, 111 views

I made the following prepaid statement.
id:int type, name:varcher type, area:int type.
Assume area is a number from 1 to 10 that represents the position where you live.
For example, 1=Kanto, 2=Kansai, 3=Shikoku, ...

In this case, how do I retrieve user data for all regions?

For example,

 if($area==0){
  $db->query("SELECT id, name FROM user");
} else {
  $ps=$db->prepare("SELECT id, name FROM user WHERE area=:area");
  $ps->bindValue(':area', (int)$area, PDO::PARAM_INT);
  $ps->execute();
}

Is there no security problem with this?

php mysql security

2022-09-30 21:17

1 Answers

In conclusion, I think there is no problem with implementing the contents.

$db->query("SELECT id, name FROM user");

I don't think there are any security issues mentioned above.
*As this is a sample, I will leave the details behind.

If you want to summarize it in one SQL, I think you can do it by using the OR clause.


2022-09-30 21:17

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.