[PHP] Re: sql question

2003-06-04 Thread ?$EF;?
That procedure it's call validation so i think you don't need compare, or query to bd any. Just validate if a $variable is a valid date in UnixFormat, i don't know how to do this, but google or someelse maybe know. regards. EF. Diana Castillo [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL

[PHP] DB2 at Win32

2003-06-03 Thread ef
Hi everyone Someone know how to set PHP work with DB2 on Win32 ? Thanks in advanced -- EF. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Adding graphics library

2003-05-31 Thread ef
--with-gd and of oucrce you need the GD library. Todd Cary [EMAIL PROTECTED] escribió en el mensaje news:[EMAIL PROTECTED] I am new to Linux so I need some help for installing the graphics library. This is what I did to get PHP to inlcude Interbase. !! Configure PHP with Interbase with

[PHP] opendir(), readdir() question..

2003-05-30 Thread ef
Hi all, How can i do for the moment i open and list all file there, display in the browser the order of this files by name ?. I have this code: ?php $handle=opendir('.'); while ($file = readdir($handle)) { if ($file != . $file != ..) { echo $file\n; } } closedir($handle); ? And