|
Posted by J.O. Aho on 02/27/07 16:56
kennthompson@gmail.com wrote:
> The name passes -- the echo test works; it just won't work as a mysql
> table. The variable is getting there, but mysql for some reason does
> not recognize it. I've read something about prepare and execute in
> mysql, but not sure this is the answer to my problem.
If your tables has other characters than a-z,A-Z,0-9 and - and _ then
you should put `` around the variable
$result = mysql_query("select * from `{$tableName}`");
I think you should use a while-loop instead of the for-loop you are using
while($row=mysql_fetch_array($result)) {
/* do something */
}
--
//Aho
Navigation:
[Reply to this message]
|