RE: [PHP] Problems with mysql_connect()

2007-01-10 Thread Edward Kay
You're missing a closing parenthesis at the end of: while ($row = mysql_fetch_row($result) This should be while ($row = mysql_fetch_row($result)) > -Original Message- > From: Delta Storm [mailto:[EMAIL PROTECTED] > Sent: 10 January 2007 10:45 > To: php-general@lists.php.net > Subject: [

Re: [PHP] Problems with mysql_connect()

2007-01-10 Thread Jochem Maas
Delta Storm wrote: > Hi, > > I'm having problems with this code (a simple exercise where i wanto to > connect to sql server and get data from it and write that data in html) > > //Prolazi kroz skup zapisa > //ispisuje svako polje > while ($row = mysql_fetch_row($result)

Re: [PHP] Problems with mysql_connect()

2007-01-10 Thread Satyam
There is a closing parenthesis missing, see below: - Original Message - From: "Delta Storm" <[EMAIL PROTECTED]> To: Sent: Wednesday, January 10, 2007 11:45 AM Subject: [PHP] Problems with mysql_connect() Hi, I'm having problems with this code (a simple exercise where i wanto to con