Re: [PHP] HELP: Syntax Needed

2001-10-29 Thread Christian Reiniger
On Sunday 28 October 2001 20:53, jtjohnston wrote: > Jokes aside, I still don't get it. *g* > This works: > mysql_pconnect($host,"AccountName","beep"); > Why doesn;'t this? > > $myconnection = mysql_pconnect($host,$MyTable,$MyPassword); Compare what arguments you pass. Especially the

Re: [PHP] HELP: Syntax Needed

2001-10-28 Thread DL Neil
> Jokes aside, I still don't get it. =the word "it" is part of the difficulty everyone faces in thinking about whether they could help or not - what "it" is, is not apparent 1 there is a problem with a mysql_pconnect() call, and 2 there is a problem with a mysql_query() call. Which one is "it"?

[PHP] HELP: Syntax Needed

2001-10-28 Thread jtjohnston
Jokes aside, I still don't get it. $host = "localhost"; $MyAccount = "AccountName"; $MyTable = "Table1"; $MyPassword = "beep"; This works: mysql_pconnect($host,"AccountName","beep"); $news = mysql_query("SHOW TABLE STATUS FROM AccountName LIKE 'Table1'"); Why doesn;'