Re: [PHP-WIN] calling a user defined java class method .....

2003-08-11 Thread toby z
in php? yes :) my dear man . why else would i ask this here toby - Original Message - From: toby z [EMAIL PROTECTED] To: php hlp list [EMAIL PROTECTED] Sent: Monday, August 04, 2003 11:14 AM Subject: [PHP-WIN] calling a user defined java class method . hay guyz im

[PHP-WIN] PHP and BerkeleyDB

2003-08-11 Thread Rodney Green
Greetings! I'm looking at using BerkeleyDB along with PHP. This is a bit off topic but is there a WIN32 binary distribution of BerkeleyDB somewhere out there? I've looked but haven't had any luck in finding it. I don't have Visual C++ to compile the source. If someone knows of a precompiled

[PHP-WIN] How to preserve value ?

2003-08-11 Thread Thomas Edward Lawrence
I have three pages : page1.php ? session_start() ; session_register(value) ; $value = 1 ? page2.php ? session_start() ; $value++ ; ? page3.php form method=POST action=page1.php ? session_start() ; $value++ ; ? input type=submit value=Submit name=B1 /form I would like I can preserve value of

Re: [PHP-WIN] Randomize mySQL result array

2003-08-11 Thread H Marc Bower
heheh... Thank you, Ignatius and B.A.T. I guessed there had to be a simple way. (V) - Original Message - From: Svensson, B.A.T. (HKG) [EMAIL PROTECTED] BTW there is a nice MySQL Windows mailing list. I wouldn't say that. Some of the authers there really need a lay... ;) -- PHP

[PHP-WIN] Session

2003-08-11 Thread Shahid
hi to all how can i track that a particular session is still active or not. so how can i get it. pls help me out ^ Shahid Sheikh [ : : I N F O R M A T I C S Y S T E M S : : ] Mumbai India Tel:91-22-56318528 Alternate email id : [EMAIL

[PHP-WIN] Re: Subject: date question

2003-08-11 Thread Neil Smith
You need to pass date() a serial time value, a timestamp. This is quite clearly documented in the PHP manual under date(). If you get stuck , try date(Y-m-d,time()) and work from there. Also, you need to use the SQL function UNIX_TIMESTAMP(day) to return a timestamp in the way you are trying