Jump to content

using apostrophe's in table names...


kaliok

Recommended Posts

I am having trouble with the following:

if (!get_magic_quotes_gpc()) {
$testName=stripslashes(strip_tags(trim($_POST['ud_testname'])));}
else {$testName=trim($_POST['ud_testname']);}

$nameSquish = str_replace(" ","", $testName);

mysql_query("CREATE TABLE $nameSquish(
ID INT NOT NULL AUTO_INCREMENT,
PRIMARY KEY(ID),
myNote TEXT,
myDate DATETIME,
noteBy VARCHAR(50))")
or die(mysql_error());


When I try to put in a name with an apostrophe (i.e. O'Reilly) in it the following error is given:

You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '\'Reilly( ID INT NOT NULL AUTO_INCREMENT, PRIMARY KEY(ID),

However when I do a echo $nameSquish before the SQL query, it comes back with:

O\'Reilly

Could someone help me find a way to create a table with the apostrophe still in the name.

Thanks.
Link to comment
https://forums.phpfreaks.com/topic/26948-using-apostrophes-in-table-names/
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.