RE: [PHP-DB] Strange problem!

2006-08-25 Thread Miguel Guirao
: Re: [PHP-DB] Strange problem! Miguel Guirao wrote: Hello everybody out here and there, I'm experiencing a weird problem with one of my scripts, I'm using ob_start() in order to store the content of a web page in a string variable: $salida=ob_get_contents(); ob_end_flush(); $doc=$rmat..doc

RE: [PHP-DB] Strange problem!

2006-08-24 Thread Bastien Koert
try posting the code Bastien From: Miguel Guirao [EMAIL PROTECTED] To: php-db@lists.php.net Subject: [PHP-DB] Strange problem! Date: Wed, 23 Aug 2006 09:41:05 -0500 Hello everybody out here and there, I'm experiencing a weird problem with one of my scripts, I'm using ob_start() in order

Re: [PHP-DB] Strange problem!

2006-08-23 Thread Chris
Miguel Guirao wrote: Hello everybody out here and there, I'm experiencing a weird problem with one of my scripts, I'm using ob_start() in order to store the content of a web page in a string variable: $salida=ob_get_contents(); ob_end_flush(); $doc=$rmat..doc; $file=fopen($doc,w);

Re: [PHP-DB] Strange problem with mySQL

2004-03-25 Thread jeffrey_n_Dyke
I am trying to update a database that I use to store user names and the hashed values of passwords. The database name is Login, the table is users. I have the following commands in my php file. @ $db=mysql_pconnect('localhost','apache','password'); mysql_select_db('Login');

Re: [PHP-DB] Strange problem with mySQL

2004-03-25 Thread Doug Thompson
Brown, Craig wrote: I am trying to update a database that I use to store user names and the hashed values of passwords. The database name is Login, the table is users. I have the following commands in my php file. @ $db=mysql_pconnect('localhost','apache','password');