At 14:34 06.11.2002, Markus Jäntti said:
--------------------[snip]-------------------- 
>$sql ="CREATE TABLE $_POST[table_name] ((";
--------------------[snip]-------------------- 

If you are including an array expression within a string, you should
enclose it in curly braces, like this:

$sql ="CREATE TABLE {$_POST[table_name]} ((";


-- 
   >O     Ernest E. Vogelsinger
   (\)    ICQ #13394035
    ^     http://www.vogelsinger.at/



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to