[PHP] PHP Conference in Amsterdam

2004-05-01 Thread Filip de Waard
Hey, Next week I will be attending the International PHP Conference in Amsterdam and since I don't know anybody who will attend I thought it would be nice to get some contacts before I go. I'm sure there are some people on this list who will be going to the conference, so I thought this might

Re: [PHP] Sessions and PHP

2004-03-24 Thread Filip de Waard
sessions, but when you store your sessions in a database using your own session handler (http://nl.php.net/session_set_save_handler) this can be achieved easily. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Example of good PHP coding

2004-03-23 Thread Filip de Waard
at the PEAR classes: http://pear.php.net Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] String Length ??

2004-03-22 Thread Filip de Waard
in the browser, please look at the HTML source instead). Secondly, please use lowercase for HTML tags and use br / instead of BR... Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
the knowledge you have gained about the columns in that table. However, I would like to suggest looking for a prewritten solution, since it's probably not necessary to reinvent the wheel here... Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
this solution when you need a easy way out. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP installation problem in FreeBSD OS.

2004-03-22 Thread Filip de Waard
On Mar 22, 2004, at 7:59 PM, Naveen Glore wrote: Hello All, I am not sure if this is the right place to post this problem. I tried with FreeBSD mailing list but could not get much help. No, it isn't. There is a specific installation list ([EMAIL PROTECTED]). I am having hard time in installing

Re: [PHP] Re: ip to country

2004-03-21 Thread Filip de Waard
On Mar 21, 2004, at 10:38 PM, Chris Shiflett wrote: --- Filip de Waard [EMAIL PROTECTED] wrote: Using HTTP headers to identify the country where a visitor comes from is totally inaccurate. That's not really very fair to HTTP. There is no header that identifies the country, so it's not inaccurate

Re: [PHP] Zend Optimiser -- wide spread??

2004-03-21 Thread Filip de Waard
. source code (expensive). If you don't want to give them your source you can always make an reseller arrangement with a specific hosting company and forward clients who's current provider doesn't support the Zend Optimizer to that reseller account :-) Regards, Filip de Waard -- PHP General

Re: [PHP] CMS Templating with Standards Based HTML Delima...

2004-03-20 Thread Filip de Waard
'a perfect Open Source CMS'. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: ip to country

2004-03-20 Thread Filip de Waard
. php.net and google certainly don't use the free service but instead bought a database. If your site is busy you should buy one too. PHP.net uses a free database: http://ip-to-country.webhosting.info/ which is actually quite good. Regards, Filip de Waard -- PHP General Mailing List (http

Re: [PHP] Re: ip to country

2004-03-20 Thread Filip de Waard
with: Accept-Language: en-us,en;q=0.5, while I live in the Netherlands where the main language is Dutch. When you need a little bit of accuracy you can't avoid using an IP to country database. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] HTML/PHP page print

2004-03-18 Thread Filip de Waard
is an excellent article written by CSS guru Eric Meyer about printing from the web. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Advanced PHP Programming by George Schlossnagle

2004-03-17 Thread Filip de Waard
and level of the book. Of course I haven't read the complete book yet, but from what I've read so far this was money well spent. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Advanced PHP Programming by George Schlossnagle

2004-03-17 Thread Filip de Waard
On Mar 17, 2004, at 6:12 PM, Chris W. Parker wrote: Filip de Waard mailto:[EMAIL PROTECTED] on Wednesday, March 17, 2004 7:20 AM said: Hey guys. hi. I instantly started to read and I'm very happy with the quality and level of the book. Of course I haven't read the complete book yet, but from

Re: [PHP] List of all defined constants

2004-03-15 Thread Filip de Waard
On Mar 15, 2004, at 3:23 PM, Marco Schuler wrote: Hi How can I get a list of all constants defined with define()? Marco, Like the manual (http://nl2.php.net/constants) says: Use get_defined_constants() to get a list of all defined constants. Regards, Filip de Waard -- PHP General Mailing

Re: [PHP] Create table .. script

2004-03-13 Thread Filip de Waard
. This isn't the correct list for these kind of questions, since we have php-db for database related stuff. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Connect to MS-SQL 2000

2004-03-13 Thread Filip de Waard
On Mar 13, 2004, at 6:01 PM, [EMAIL PROTECTED] wrote: Can we control php direct connect to MS-SQL 2000 ( Another computer machine ) ? RTFM, http://www.php.net/ms_sql. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Character Question

2004-03-12 Thread Filip de Waard
it relates with security and possible SQL injection (and we don't want that, do we?). Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Date to string (with mask)

2003-11-08 Thread Filip de Waard
, http://www.php.net/date Cheers, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Date to string (with mask)

2003-11-08 Thread Filip de Waard
); $date = date(d/m/Y, $timestamp); echo $date; ? Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dissecting an email address

2003-11-02 Thread Filip de Waard
. Any help is appreciated. Thank you in advance Yours Dave C --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.530 / Virus Database: 325 - Release Date: 22/10/2003 -- Met vriendelijke groet, Filip de Waard Net

Re: [PHP] Put output of mysql into an Array

2003-11-01 Thread Filip de Waard
) AS count_result', then you can access the value with $row['count_result']; -- Regards, Filip de Waard Net Collective www.netcollective.nl Tel. 06 - 48 01 22 40 Fax. 013 - 455 87 53 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Generating Numbers from Strings

2003-10-31 Thread Filip de Waard
range? mt_rand($start, $end); generates a 'random' number between two given numbers. Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Apache 2

2003-10-30 Thread Filip de Waard
are interested in more specific information. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Tips on books and tutorials

2003-10-30 Thread Filip de Waard
/), but you could always take a look at the currently available titles at Amazon. Good luck and happy coding, Filip de Waard On Fri, 2003-10-31 at 00:20, Tore E. Mackay wrote: Hi! I have just started to look at the exciting world og PHP and MySQL. Anyone that can inform me of good books

RE: [PHP] Echo issue RESOLVED!

2003-10-30 Thread Filip de Waard
change their opinion either. I would like to suggest that you try Linux, BSD or OS X before you speak. Regards, Filip de Waard On Fri, 2003-10-31 at 00:32, Chris W. Parker wrote: - Edwin - mailto:[EMAIL PROTECTED] on Wednesday, October 29, 2003 11:26 PM said: [snip lots of nice things about

Re: [PHP] Tips on books and tutorials

2003-10-30 Thread Filip de Waard
, so I suggest that you'll go to your local bookstore or Amazon.com and pick one. I can't think of an exact title, but you might want to check what Wrox are still available. Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php