RE: [PHP-DB] PHP Standalone? (fwd)

2004-02-05 Thread Frank M. Kromann
Take a look at http://gtk.php.net/apps. Lots of references to code that will work on both *nix and Win32 systems. - Frank > Hi there, > > Unfortunately I don't know much Perl at all ATM, and I've suddenly has this > job arise that needs me use an ACCESS Database (Yuck) but in a windows-style > i

[PHP-DB] Re: Associated popup menu (php/mysql)

2004-02-05 Thread Mike S.
Actually, there is a way to do this with PHP. It may not be the best method, but it is possible. You could do it with one single source file, or multiple. With a single source file you could do something like this: The first time through would display the first popup with valid choices. Form ac

[PHP-DB] Acessing a excel worksheet from a php site

2004-02-05 Thread Bruno Pereira
I'm making a site to a company and they have a excel worksheet where i have to get the data to a site in php. My question is simple, i think, how can i get it? Cumprimentos Bruno Pereira DSI [EMAIL PROTECTED] -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.

Re: [PHP-DB] Associated popup menu (php/mysql)

2004-02-05 Thread Micah Stevens
Javascript is client side programming, PHP is server side and unable to control actions and make decisions on what's happening in the browser except in a 'third person' manner. Simply put, you can't do this with PHP. On Thu February 5 2004 5:21 pm, alb_shop wrote: > Hello all, > > I've bee

[PHP-DB] Associated popup menu (php/mysql)

2004-02-05 Thread alb_shop
Hello all, I've been searching for hours and cannot find the answer or sample in in any forum. What is the best method (any sample or help would be appreciated), to associate popup menus in a form. Choosing the first popup menu (Main categorie) should provide to me the results for the second popu

RE: [PHP-DB] PHP Standalone? (fwd)

2004-02-05 Thread Chris Payne
Hi there, Unfortunately I don't know much Perl at all ATM, and I've suddenly has this job arise that needs me use an ACCESS Database (Yuck) but in a windows-style interface and NOT web, so I have been looking hard to try to find information on whether I can create an interface for 2000/XP that can

Re: [PHP-DB] PHP Standalone?

2004-02-05 Thread Frank M. Kromann
http://gtk.php.net - Frank > Hi there everyone, > > > > I need to produce a system which uses databases but NOT on a webserver, I > heard something about a PHP distro that is being developed which acts like > an executable, does anyone know anything of this? > > > > Any help would really

Re: [PHP-DB] PHP Standalone?

2004-02-05 Thread Micah Stevens
http://us4.php.net/manual/en/features.commandline.php On Thu February 5 2004 3:17 pm, Chris Payne wrote: > Hi there everyone, > > > > I need to produce a system which uses databases but NOT on a webserver, I > heard something about a PHP distro that is being developed which acts like > an execut

[PHP-DB] PHP Standalone?

2004-02-05 Thread Chris Payne
Hi there everyone, I need to produce a system which uses databases but NOT on a webserver, I heard something about a PHP distro that is being developed which acts like an executable, does anyone know anything of this? Any help would really be appreciated :-) Chris Payne ---

Re: [PHP-DB] Help with an UPDATE query please

2004-02-05 Thread John W. Holmes
> > I have (among others) two DATE columns in a table; Booking_Date and > > Booking_Completion_Date. How can I run a query that updates > > Booking_Completion_Date to be 2 days after Booking_Date where > > Booking_Completion_Date is NULL? UPDATE table SET Booking_Completion_Date = Booking_Date + I

[Fwd: Re: [PHP-DB] Help with an UPDATE query please]

2004-02-05 Thread Stuart Gilbert
[Forwarded for Paxson Jr. because this was only sent to me.] you can also easily use the mysql date functions http://www.mysql.com/doc/en/Date_and_time_functions.html On 05. Feb 2004, at 11:23 Uhr, Stuart Gilbert wrote: Presuming you have the date in your PHP code you could simply add 172800 (

Re: [PHP-DB] Help with an UPDATE query please

2004-02-05 Thread Stuart Gilbert
Presuming you have the date in your PHP code you could simply add 172800 (seconds in 2 days) to the current value and insert it in the same way as you are doing with your current dates. If you post how you're inserting your dates, what format you're using and stuff like that then you'll probabl

[PHP-DB] Help with an UPDATE query please

2004-02-05 Thread Shaun
Hi, I have (among others) two DATE columns in a table; Booking_Date and Booking_Completion_Date. How can I run a query that updates Booking_Completion_Date to be 2 days after Booking_Date where Booking_Completion_Date is NULL? Many thanks -- PHP Database Mailing List (http://www.php.net/) To un