[PHP-DB] Strange problem!

2006-08-23 Thread Miguel Guirao
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); fputs($file,$salida);

[PHP-DB] Database project

2006-08-23 Thread Karl James
Hey team, I need some help on creating my tables in the database For what I want to do on my website. I want to create a fantasy football league website and view Old stats from previous years that do not change. Also be able to add, drop, and trade players with team Control management.

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);