Lampwrights Forum > Search Forums

Showing results 1 to 5 of 5
Search took 0.00 seconds.
Search: Posts Made By: Jeff
Forum: MySQL 06-22-2011, 07:54 AM
Replies: 8
Views: 170,489
Posted By Jeff
You can eliminate most mysql injections with...

You can eliminate most mysql injections with MySQLi's prepare method. :)
Forum: MySQL 11-22-2010, 07:39 AM
Replies: 8
Views: 170,489
Posted By Jeff
intval() will convert any data to an integer. So...

intval() will convert any data to an integer. So for example:

$variable = "I am some injected text";
echo intval($variable);
The output of this would be:

0

So if you are expecting a...
Forum: MySQL 11-21-2010, 10:16 AM
Replies: 8
Views: 170,489
Posted By Jeff
Unless you mean what is the difference between...

Unless you mean what is the difference between mysql_real_escape_string and mysql_escape_string. The difference is, the mysql_escape_string is deprecated and also mysql_real_escape_string takes a...
Forum: MySQL 11-21-2010, 10:14 AM
Replies: 8
Views: 170,489
Posted By Jeff
They are both the same?

They are both the same?
Forum: MySQL 11-19-2010, 10:35 AM
Replies: 8
Views: 170,489
Posted By Jeff
Protecting Against MySQL Injections

I just had the not so fun task of auditing some PHP code that had a lot of vulnerabilities. These were all MySQL injection type attacks. I had found them mostly because of the MySQL errors they...
Showing results 1 to 5 of 5

 

All times are GMT -4. The time now is 12:53 PM.


Powered by vBulletin® Version 3.8.8 Beta 4
Copyright ©2000 - 2024, vBulletin Solutions, Inc.