[PHP-DB] PHP & Crystal Report

2004-12-12 Thread Ng Hwee Hwee
Hi all, can someone kindly direct me to resources on generating reports using Crystal Report 10 through PHP 4.3.4 and MySQL 4.0.22 database? thank you. best regards, hwee

[PHP-DB] Installing Firebird 1.5 and PHP

2004-12-12 Thread Todd Cary
I am running Fedora 3 with Apache and Firebird 1.5.1. Where can I obtain instructions on integrating PHP with Apache/Firebird? Thank you Todd -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] save as you type

2004-12-12 Thread Rodrigo Kochenburger
You could do it with javascript, but its stupid since it'll consume a lot of processes (1 for each character typed). Tell the users to not forget it. Or as alternative: 1 2
3 var submited = false;
4 function unloadConfirm()
5 {

RE: [PHP-DB] forgetting to close db connection

2004-12-12 Thread Peter Lovatt
Hi If you have a large number of users updating the same database there are a wide range of issues that come into play. I am assuming you have a web interface, if not the following does not apply. The web is stateless. By that I mean that there is no persistent connection between your page and

[PHP-DB] forgetting to close db connection

2004-12-12 Thread Matthew Perry
On my forms I connect to my database each page that I need to update the data. I do not disconnect at the end of the page. Very soon I will have about 20-700 entering data simultaneously. I might use this javascript code sent by Peter. This will probably lead to a pretty huge overhead. Is not

Re: [PHP-DB] save as you type

2004-12-12 Thread John Holmes
Matthew Perry wrote: Is there a way to make an input box save data into a database as users type? My users keep forgetting to press my "apply changes" buttons. Educate your users or use some JavaScript auto submit workaround. Not a PHP issue, though... -- ---John Holmes... Amazon Wishlist: www.

RE: [PHP-DB] save as you type

2004-12-12 Thread Peter Lovatt
You could use JavaScript onblur executes when the user leaves the box, and will submit the form HTH Peter > -Original Message- > From: Matthew Perry [mailto:[EMAIL PROTECTED] > Sent: 12 December 2004 05:12 > To: [EMAIL PROTECTED] > Subject: [PHP-DB] save as you type > > > Is there