Re: [PHP-DB] can i create an Access table or mdb with PHP?

2002-11-14 Thread Richard Allsebrook
niqid()...) and populate the copy. Send the copy to your user You will end up with copies littering your site, so at the start of the population phase, run some 'tidy up code' which deletes any old databases (older than a day say). Hope this helps. -- Richard Allsebrook Appli

[PHP-DB] Re: persistant database connections

2002-11-05 Thread Richard Allsebrook
There's a whole world of difference between 'rendered' and 'processed - the page is processed top to bottom (baring any branching in your php) - and generally rendered from top to bottom - some parts being rendered after as the missing components (images etc) are loaded. - in short - yes you can

[PHP-DB] Re: Re:Re: [PHP-DB] Print data

2002-10-24 Thread Richard Allsebrook
This isn't a PHP problem - its you browser. ie has an option in its print dialog (option tab) to print framed sites out properly - don't know how the other browsers manage it... <[EMAIL PROTECTED]> wrote in message news:E184aOC-0002vK-00@;mail.idilis.net... > hy, > i'm having a problem with print

[PHP-DB] Re: PHP and databases? ...without MySQL and such

2002-10-23 Thread Richard Allsebrook
You can use the Microsoft ODBC Text driver to access flat files and perform SQL Queries on it - can be REALLY slow on big files though (no indexes) :( Alternatively - write a script that pulls the flat file into a proper database table :) Hope this helps -- Richard Allsebrook Applications and

Re: [PHP-DB] Just curious about the echo commnad

2002-10-23 Thread Richard Allsebrook
o sure how compatible this method is with XML ( I THINK you have uses double quotes around attribute values) - but for plain old HTML it works fine. you could use echo 'bar"; but it makes variable replacement ugly :( echo '' . $bar . ''; as apposed to..