Skip to main content

All Questions

Tagged with
3 votes
1 answer
806 views

Does PDO::quote helps me to protect me against sql injection?

I have to process raw sql user input with Laravel. I've backed them up as follows: ...
Phillipp Schwarz's user avatar
2 votes
2 answers
101 views

Is this a 100% safe from SQL Injection and will work correctly for any input? [closed]

...
Steve143's user avatar
2 votes
2 answers
1k views

PHP Dynamic QueryBuilder function - Security

This function is a working function, which builds a number of queries depending on the values of $_POST. ...
Adam Copley's user avatar
2 votes
1 answer
534 views

Securing a form with image uploads

I am using PDO prepared statements to store user entered input and store that input to the database. The code will store a text input and 5 uploaded images. Will this code protect from data SQL ...
sanoj lawrence's user avatar
10 votes
4 answers
837 views

Listing products from a database

I've this function to list products from database by category. I'm using prepared statements, but wouldn't this make it pretty pointless to use them? ...
user avatar