[PHP] PHP OOP x Procedural Performance - Conclusions

2003-05-30 Thread William N. Zanatta
and that would fit really good in some environments where data are output in many formats. Thank you all guys!!! Regards, William N. Zanatta -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP OOP x Procedural Performance

2003-05-29 Thread William N. Zanatta
versus procedural language? Is it a good choice to code in OOP with PHP ? -=[ William N. Zanatta ]==[ [EMAIL PROTECTED] ]=- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] crontab help

2001-03-09 Thread William N. Zanatta
Arnold, In the minutes field on crontab, you can add as many values as you want separated by a colon. Try somthing like this... 00,05,10,15,20,25 and so until 55 * * * ^ THIS IS A MINUTES FIELD WITH MANY VALUES We use it here and it does the job fine. Try

Re: [PHP] SQL statement in PHP

2001-02-16 Thread William N. Zanatta
Matt, Maybe the mistake is at the quotes... Just replace the double quotes inside the select statement by single quotes... Try something like: snip code $sql = "select Business_Name,Trading_Details where Business_Type='Consultancy' and Bassingbourn != '0' from Main"; /snip code