This is a discussion on Database-backed website w/o server RDBMS within the PHP Language forums, part of the PHP Programming Forums category; I'm looking for a website backend. I can use PHP and other scripting languages, but I don't have ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I'm looking for a website backend. I can use PHP and other scripting languages,
but I don't have access to an RDBMS. So I'm looking for an RDBMS substitute -- maybe something that reads/writes plain text or XML files sitting on the web server. Any ideas? Matt O. |
|
|||
|
Hello,
On 01/27/2004 02:36 AM, Matt O'Toole wrote: > I'm looking for a website backend. I can use PHP and other scripting languages, > but I don't have access to an RDBMS. So I'm looking for an RDBMS substitute -- > maybe something that reads/writes plain text or XML files sitting on the web > server. Any ideas? Here you may find several ideas, including some based on CSV files and even with PHP only based SQL support: Class: Class.DB.php http://www.phpclasses.org/adb Class: File DB http://www.phpclasses.org/filedb Class: Perfect Database File http://www.phpclasses.org/pdbf Class: textDB http://www.phpclasses.org/textdb -- Regards, Manuel Lemos Free ready to use OOP components written in PHP http://www.phpclasses.org/ MetaL - XML based meta-programming language http://www.meta-language.net/ |
|
|||
|
In article <JVlRb.2589$BY3.1719@nwrddc01.gnilink.net>, Matt O'Toole wrote:
> I'm looking for a website backend. I can use PHP and other scripting languages, > but I don't have access to an RDBMS. So I'm looking for an RDBMS substitute -- > maybe something that reads/writes plain text or XML files sitting on the web > server. Any ideas? You might try a Berkeley DB style database: - http://www.php.net/manual/en/ref.dba.php Depending on your needs, you may be able to get by with something simpler like serialize or WDDX: - http://www.php.net/manual/en/function.serialize.php - http://www.php.net/manual/en/ref.wddx.php With any of these solutions, you'll probably want to use some sort of locking if there is the possibility of multiple users trying to write to your data files at the same time. - http://www.php.net/flock Use this info at your own risk. I always use RDBMSs. ;) Good luck, Dave -- ..:[ dave benjamin (rameny sp00) -:- spoomusic.com -:- ramenfest.com ]:. : d r i n k i n g l i f e o u t o f t h e c o n t a i n e r : |