Re: [PHP] About iMail Help

2003-11-18 Thread Derek Ford
D. Jame wrote: Hi, Anyone know about imail.? could you be any more vague? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] eregi filter

2003-11-18 Thread Derek Ford
Erin wrote: Anyone have a good eregi filter for passwords? Regards R well, for one thing, don't use ereg. Use pcre, as it is faster. preg_match('/^[a-zA-Z0-9]{5,16}$/',$blah); that will validate a password containing only upper or lowercase letters and numbers, between 5 and 16

Re: [PHP] Re: Moving to php

2003-11-16 Thread Derek Ford
DvDmanDT wrote: PHP is 99% (if not 100%) backwards compitable... PHP is even stable on WinME, and on XP.. Lots of ppl use it on 2k as well... Works fine.. And fast (well, depending on your installation and configuration)... Oh, and about support.. PHP on windows accutually have it's own official

Re: [PHP] Re: Moving to php

2003-11-16 Thread Derek Ford
DvDmanDT wrote: Well, yes.. But chanses aren't all that big you'll find any bugs (at least not windows specific), unless you try the w32api extension or bcompiler combined with zend optimizer... I've ran into many. The ones that really take the cake are the streams bugs, which have been

Re: [PHP] newbie stuck again

2003-11-16 Thread Derek Ford
PAUL FERRIE wrote: Here's what i have done. i have downloaded a very simple database manager from www.hotscripts.com. It allows me to edit, delete and add new information to the database. i have a couple of problems. 1. form field dont fill with all the data senback from the db to be edited,

Re: [PHP] fgetcsv

2003-11-16 Thread Derek Ford
zhuravlev alexander wrote: Hello. I wonder if PHP has fgetcsv() function why doesn't PHP has fputcsv ? -- zhuravlev alexander u l s t u n o c ([EMAIL

Re: [PHP] Who controls PHP?

2003-11-15 Thread Derek Ford
John Nichel wrote: Chris Shiflett wrote: --- John Smith [EMAIL PROTECTED] wrote: Please, tell me that Zend is not the dictator here. No one is a dictator. Chris So there is an opening for a dictator then? How can I get my name on the ballot? ;) I am the only dictator here. -- PHP

Re: [PHP] newbie question about scope

2003-11-12 Thread Derek Ford
news.comcast.giganews.com wrote: I am an experienced web developer who is just getting into php. I have had a php project fall into my lap and wanted a little advice. Here is the scoop: A client moved their site from a server (unknown details) to a hosting facility (php 4.3.2). Now none of

RE: [PHP] mysql_list_fields() bug?

2003-11-10 Thread Derek Ford
as said, use the global construct. This is a scope problem, read the manual about variable scope. php.net/variables.scope PS: sorry Jay, new mail frontend :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php