kaliok Posted November 11, 2006 Share Posted November 11, 2006 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\'ReillyCould 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 More sharing options...
fenway Posted November 12, 2006 Share Posted November 12, 2006 I really hope that you can't... you could try using backticks (`) and see what happens. Link to comment https://forums.phpfreaks.com/topic/26948-using-apostrophes-in-table-names/#findComment-123408 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.