Jump to content

MySQL Question


nepzap2

Recommended Posts

Thank you guys. That pretty much solved my issue. I took Maq's suggestion like so: 

 

mysql_real_escape_string($_POST['laboratoryExperience']), 
mysql_real_escape_string($_POST['researchExperience']), 
mysql_real_escape_string($_POST['personalStatement']), 
mysql_real_escape_string($_POST['resume'])

 

So can this function pretty much escape any characters?

Link to comment
https://forums.phpfreaks.com/topic/187145-mysql-question/#findComment-988270
Share on other sites

Thank you guys. That pretty much solved my issue. I took Maq's suggestion like so: 

 

mysql_real_escape_string($_POST['laboratoryExperience']), 
mysql_real_escape_string($_POST['researchExperience']), 
mysql_real_escape_string($_POST['personalStatement']), 
mysql_real_escape_string($_POST['resume'])

 

So can this function pretty much escape any characters?

 

It's all in the manual.

 

mysql_real_escape_string() calls MySQL's library function mysql_real_escape_string, which prepends backslashes to the following characters: \x00, \n, \r, \, ', " and \x1a.

 

This function must always (with few exceptions) be used to make data safe before sending a query to MySQL.

Link to comment
https://forums.phpfreaks.com/topic/187145-mysql-question/#findComment-988273
Share on other sites

Also mentioned in the manual:

 

Note: A MySQL connection is required before using mysql_real_escape_string() otherwise an error of level E_WARNING is generated, and FALSE is returned. If link_identifier  isn't defined, the last MySQL connection is used.
Link to comment
https://forums.phpfreaks.com/topic/187145-mysql-question/#findComment-988292
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.