[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
ake a look 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] 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 p

Re: [PHP] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
ecessary to chose 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] Backup of a MySQL database.

2004-03-22 Thread Filip de Waard
using 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 unsubscr

Re: [PHP] String Length ??

2004-03-22 Thread Filip de Waard
the string (which may differ from those who are shown in the browser, please look at the HTML source instead). Secondly, please use lowercase for HTML tags and use instead of ... Regards, Filip de Waard -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2004-03-21 Thread Filip de Waard
oded file (cheaper) and b. 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 :-)

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'

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,

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

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

2004-03-20 Thread Filip de Waard
ng like '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] 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

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 comple

[PHP] Advanced PHP Programming by George Schlossnagle

2004-03-17 Thread Filip de Waard
uality 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] 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 Gener

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] Create table .. script

2004-03-13 Thread Filip de Waard
eneral SQL to create tables in PHP. 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] Character Question

2004-03-12 Thread Filip de Waard
hes inside of your data. I would suggest to study the manual carefully on this issue, since 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
On Sat, 2003-11-08 at 15:21, Christian Ista wrote: > > > a string like that : 2003-11-07 and I'd like display 07/11/2003 I usually do: 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
nction ? > > Thanks, > > Christian, 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] Dissecting an email address

2003-11-02 Thread Filip de Waard
e Date: 22/10/2003 > -- Met vriendelijke groet, 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] Put output of mysql into an Array

2003-11-01 Thread Filip de Waard
x27;markhow']; > } > > O.k. This is working.. Can someone tell me how to retrieve the COUNT > function? Use 'COUNT(id) AS count_result', then you can access the value with $row['count_result']; -- Regards, Filip de Waard Net Collective www.netcollective.nl Tel. 0

Re: [PHP] Re: Generating Numbers from Strings

2003-10-31 Thread Filip de Waard
enerate a number out of that that's in a > certain 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] Tips on books and tutorials

2003-10-30 Thread Filip de Waard
y books that have what you need, 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 un

RE: [PHP] Echo issue RESOLVED!

2003-10-30 Thread Filip de Waard
icionados won't 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

Re: [PHP] Tips on books and tutorials

2003-10-30 Thread Filip de Waard
l.org/), 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 c

RE: [PHP] PHP & Apache 2

2003-10-30 Thread Filip de Waard
oogle if you 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