Re: [PHP] Strore Data in File

2002-09-11 Thread Marek Kilimajer
You may use either dBase ( http://www.php.net/manual/en/ref.dbase.php ) or http://www.php.net/manual/en/ref.dba.php Ram K wrote: > Hi > > I want to store the data of a table in a file and read that file just > as one would read a table. For e.g. I have a table t_data with cols > name,numbe

RE: [PHP] Strore Data in File

2002-09-10 Thread SHEETS,JASON (Non-HP-Boise,ex1)
sing a database server. Jason -Original Message- From: Kevin Stone [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 10, 2002 2:25 PM To: Ram K; [EMAIL PROTECTED] Subject: Re: [PHP] Strore Data in File RK, this is ultra-basic stuff. Opening and dealing with files is one of the f

Re: [PHP] Strore Data in File

2002-09-10 Thread Kevin Stone
for ($j=0; $j".$table[$i][$j]."\n"; } echo "\n"; } echo ""; ?> Good luck. -Kevin - Original Message - From: "Ram K" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, September 10, 2002 11:29 AM Subject: [PHP] Strore

[PHP] Strore Data in File

2002-09-10 Thread Ram K
Hi I want to store the data of a table in a file and read that file just as one would read a table. For e.g. I have a table t_data with cols name,number,cost and my data file data.txt would have the following data: --- john,1,100 mark,2,200 spencer,3,200 --- Now on the web page when t