[PHP] ZEND Certification

2005-05-20 Thread Martin Zvarik
Hi, anyone has taken ZEND PHP Certification Exam??? Please can you give me some information about it? Thank you, Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] ZEND Certification

2005-05-21 Thread Martin Zvarik
. I have looked at yellow pages, seems like you're not there either, Rory Browne... If many people here have taken it, can someone please answer my questions above? Thank you! Martin -Original Message- From: Rory Browne [mailto:[EMAIL PROTECTED] Sent: Friday, May 20, 2005 1:31 PM

RE: [PHP] Re: Strange comparison behaviour

2005-05-21 Thread Martin Zvarik
String "info" is converted to integer, which is 0... a) if("info" == "0") b) if("info" === 0) c) if("info" == (string)0) Or use strcmp() Cya... Read a book "PHP for beginners" -Original Message- From: Bogdan Stancescu [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 5:13 AM To

[PHP] .INC files

2005-05-31 Thread Martin Zvarik
Hi, I saw files like "file.inc.php" and "file.inc" What is the *.inc suffix good for ? Thank you for replies. Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] .INC files

2005-05-31 Thread Martin Zvarik
Hi, I saw files like "file.inc.php" and "file.inc" What is the *.inc suffix good for ? Thank you for replies. Martin

[PHP] [Files suffix] .inc.php files

2005-05-31 Thread Martin Zvarik
Hi, I saw files like "file.inc.php" and "file.inc" What is the *.inc suffix good for ? Thank you for replies. Martin

[PHP] TEST

2005-05-31 Thread Martin Zvarik
test dammit, doesnt work

[PHP] Re: .INC files

2005-06-01 Thread Martin Zvarik
Sorry I didnt know the post delay is that LONG... On 5/31/05, Jason Barnett <[EMAIL PROTECTED]> wrote: > > Martin Zvarik wrote: > > Hi, > > I saw files like "file.inc.php" and "file.inc" > > > > What is the *.inc suffix good for ?

[PHP] Best way how to STORE DATA

2005-06-09 Thread Martin Zvarik
Hi, what's the best way how to store a small amount of data, like list of categories or sections of a website. CVS (comma delimited text) x Database (MySQL, or other) x XML ? Which method is the fastest? Anyone has any personal experiences? Thank you in advance for replies. Martin Zvarik