[PHP] PHP usage stats

2009-02-08 Thread Richard Heyes
Hi, Can anyone point out some general statistics on PHP usage compared to other server languages? I've tried Netcraft, but they only appear (or I've only found) to have statistics on the httpd server used. Thanks. -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera

Re: [PHP] long echo statement performance question

2009-02-06 Thread Richard Heyes
> Wouldn't have thought so. But for readability, you may find this a > little easier instead: Slight correction: ?> blah http://www.rgraph.org (Updated January 31st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] long echo statement performance question

2009-02-06 Thread Richard Heyes
> ... Wouldn't have thought so. But for readability, you may find this a little easier instead: ?> {$var1} Blah {$var2} ... http://www.rgraph.org (Updated January 31st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Where does the sendmail() function come from?

2009-02-05 Thread Richard Heyes
> think I shouldve stayed > in bed today. I feel like that most days... -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 31st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.p

Re: [PHP] Where does the sendmail() function come from?

2009-02-05 Thread Richard Heyes
can't find a reference > to it in the manual, so where does it come from? Presumably it's either undocumented or user defined. get_defined_functions() will help you in determining that. -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph

Re: [PHP] why does a html mail send as text ?

2009-02-05 Thread Richard Heyes
re it can. It denotes a quoted string. Like this: "Paul Doobla" -- Richard Heyes HTML5 Canvas graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 31st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Blank page of hell..what to look for

2009-02-02 Thread Richard Heyes
> I have errors on Including E_NOTICE ? -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 31st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Includes only if required?

2009-02-02 Thread Richard Heyes
then it may well be cause for concern. Either way you can define a function called "__autoload" that gets called when a class is about to be instantiated. This function can then load the correct library. On demand as it were. http://uk2.php.net/__autoload -- Richard Heyes HTML5 G

Re: [PHP] Updating time in php

2009-01-26 Thread Richard Heyes
>... I'll add that if you went the JS route, then it would just be replicating the system time, ie replicating the Windows clock. Unless you decided to go the AJAX route (?!). But like Edmund said (inferred), it's a waste of time (...). -- Richard Heyes HTML5 Graphing for Fi

Re: [PHP] Captha Image Matching the Session Value.

2009-01-25 Thread Richard Heyes
> ... 1. It's captcha, not captha - http://en.wikipedia.org/wiki/Captcha 2. As far as I can see (and that's not too far), you appear to be sending HTML along with the image. You need to have one script to generate the page, and another to create and send the captcha image.

Re: [PHP] Redirecting from unreachable page on website

2009-01-22 Thread Richard Heyes
> What if the file exists, but it's kinda file to update database, like GET requests shouldn't really modify data. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www

Re: [PHP] Create $var with some function

2009-01-22 Thread Richard Heyes
Hi, function createvar($name, $value) { $GLOBALS[$name] = $value; } Or do it without a function: $GLOBALS['name'] = $value; -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing

Re: [PHP] Redirecting from unreachable page on website

2009-01-22 Thread Richard Heyes
hpguru.org/oh%20crap Using this method allows users to easily get to where they actually need to be, plus you can potentially promote anything of yours that you want to. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) --

Re: [PHP] Military <-> Standard times

2009-01-22 Thread Richard Heyes
> PS - I think the best ever name for a Exception class is 'Tantrum': > >throw new Tantrum('Ra Ra Ra Aaaargh'); Lol. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mai

Re: [PHP] MySQL class. Thoughts?

2009-01-21 Thread Richard Heyes
he same (or at least very similar) API to the PEAR::DB abstraction layer. http://www.phpguru.org/downloads/DB/ -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] mysql_query and my.cnf?

2009-01-20 Thread Richard Heyes
> ... Hi, You might get more help on the MySQL list. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] maybe we could all?

2009-01-20 Thread Richard Heyes
> ... Um, PEAR? -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and Apache configuration

2009-01-19 Thread Richard Heyes
ot;; local_referal Order Deny,Allow Deny from all Allow from env=local_referal ####### -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Undefined index error

2009-01-19 Thread Richard Heyes
;] on the preceding line. Just for testing, you could do this too: $_SERVER['REQUEST_URI'] = 'It/Works'; ...on the preceding line. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mai

Re: [PHP] phpMailer Problem!

2009-01-18 Thread Richard Heyes
>> $mail->Port = 80; > > Invalid mail port Further to that, the normal port for SMTP is 25. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re: [PHP] 100% CPU Usage somewhere in script - how to find it?

2009-01-18 Thread Richard Heyes
> ... This may be of some use, enabling you to find the areas that are taking longer than others: http://www.phpguru.org/downloads/Timer/Timer.phps -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 17th) -- PHP General Mailing L

Re: [PHP] Finger

2009-01-15 Thread Richard Heyes
y you can be more or less sure that a person has read the email. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Holy crap

2009-01-12 Thread Richard Heyes
Chrome 2.0? http://www.trustedreviews.com/software/news/2009/01/12/Google-Chrome-Hitting-Macs--Linux-By-July/p1 So much for long beta periods! -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
ator and test in many RSS > clients/readers. RSS 0.92? That's what I've always used. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> hope you're well today Well, I have a bit of runny nose, and as usual it's frickin' freezing (the joys of rat poison). But other than that fine thanks. You? -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> ... Suppose I should change my feed then. At some point... :-) -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
han hardcode everything. DOMDocument would be overkill. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
> > Oops, that should be the title of the individual article. -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] RSS feeder in PHP5?

2009-01-12 Thread Richard Heyes
nd the actual data: -- Richard Heyes HTML5 Graphing for Firefox, Chrome, Opera and Safari: http://www.rgraph.org (Updated Jan

Re: [PHP] Using MDB2 outside the PEAR framework?

2009-01-10 Thread Richard Heyes
27;s served me well. Sorry, forgot the URL: http://www.phpguru.org/static/ApplicationStructure.html -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using MDB2 outside the PEAR framework?

2009-01-10 Thread Richard Heyes
> Where would I find that article, if you think it might help me get MDB2 > working properly? It won't help you get MDB2 working - it's a general thing I wrote on structuring your applications and websites. I have used for quite a while though, and it's served me well. --

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-08 Thread Richard Heyes
> So... when you're forgetful... have you ever had to bum a fag? All the time... :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-08 Thread Richard Heyes
> until you have to dump it, zip it, ssh it over to another box and then > import it back in That's what fag breaks are for... :-) Well, that and smoking. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General M

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-07 Thread Richard Heyes
a drive measured in the hundreds of Gigs. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] redoing website after 7 years

2009-01-07 Thread Richard Heyes
> but, I'm more concern does client has to pay the changes/upgrade or it's > still "my obligation"? Of course you charge him. Christ if I was expected to maintain stuff gratis that I wrote 7 years ago I'd be mullahed. -- Richard Heyes HTML5 Graphing for FF,

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-07 Thread Richard Heyes
ctual length, lots of rows, or both, then varchar > columns may be faster. I still think a CHAR field would be faster than a VARCHAR because of the fixed row length (assuming every thing else is fixed). Perhaps someone from the MySQL list could clarify...? -- Richard Heyes HTML5 Graphing for

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-07 Thread Richard Heyes
e days are long gone. In the example you gave you're still only wasting approx 1 GB. Hardly a lot these days when you consider you buy a consumer 500Gb Hdd for £50. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-06 Thread Richard Heyes
ternal only). > > http://dev.mysql.com/doc/refman/5.0/en/char.html > > When CHAR values are stored, they are right-padded with spaces to the > specified length. When CHAR values are retrieved, trailing spaces are > removed. So where's the advantage of VARCHAR ? -- Ric

Re: [PHP] Because you guys/gals/girls/women/insert pc term here are a smart lot

2009-01-06 Thread Richard Heyes
not really a concern these days. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated January 4th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS Feed on my PHP site

2009-01-05 Thread Richard Heyes
> i'm new to RSS Feeds, but how would it be possible to have a BBC News Feed > added to my website? You can read and parse an RSS feed just like any other webpage. Magpie RSS will probably make life easier though. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and S

Re: [PHP] Searching in a long text

2009-01-03 Thread Richard Heyes
e worth it I think. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question about version control.. sorta..

2008-12-31 Thread Richard Heyes
Muhaha. > responses. I don't have anything against Linux or Mac, they're great > systems. But I have my reasons for running Windows. There's definitely a Gui for CVS. TurtleCVS IIRC. Presumably there's one for SVN. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera

Re: [PHP] Is MD5 still considered safe for storing application user passwords?

2008-12-31 Thread Richard Heyes
. However with the addition of a salt it would be largely pointless since you need both pieces (?) of information (password plus salt) to generate the hash. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mail

Re: [PHP] Is MD5 still considered safe for storing application user passwords?

2008-12-31 Thread Richard Heyes
ough. For example, you could use this: -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Search functionality in website.

2008-12-29 Thread Richard Heyes
my personal website: http://www.phpguru.org -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Webhotel structure

2008-12-27 Thread Richard Heyes
>What? Seconded. Are you talking about hosting? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Zend framework

2008-12-24 Thread Richard Heyes
2008/12/24 Al : > I've not given it much thought, so far. > > But, am curious about what you folks think about it. > > Anyone with experience have a comment? On what? The Zend Framework? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.o

Re: [PHP] MERRY XMAS

2008-12-24 Thread Richard Heyes
> word Which one? Happpy needless turkey murder day! To coin a phrase. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Create PHP form from MySQL table structure

2008-12-23 Thread Richard Heyes
leEditor.html -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] First record not diplaying

2008-12-22 Thread Richard Heyes
> Also (and I know the speed junkies will want to shoot me now!) you could > shorten the echo inside the while loop to: You could shorten it even further by omitting it... :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated Decembe

Re: [PHP] filter function vs regular expression

2008-12-20 Thread Richard Heyes
l term I believe). -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 20th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] filter function vs regular expression

2008-12-20 Thread Richard Heyes
e format ? They' more versatile. Far more in the case of PCRE. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] IE8 and HTML5

2008-12-19 Thread Richard Heyes
> This is why I removed it from my system. FWIW, it doesn't do it now. I still by far prefer Firefox. If anything, it's because of Firebug. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Maili

Re: [PHP] PHP Form email w/attachment

2008-12-18 Thread Richard Heyes
> thank god that some guys make it > simple for us ;) You're welcome. :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Good PHP book?

2008-12-17 Thread Richard Heyes
> Floppies hold 1.4 megs now? Mine don't and they're even dual-sided. :( What are "Floppies"? Is it a reference to a particular male problem? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP Gen

Re: [PHP] Good PHP book?

2008-12-17 Thread Richard Heyes
> Sounds like you need "Self Esteem for Dummies." Lol. It's not a question of self-esteem, more based on the number of non-starter businesses I've attempted to start. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated Decembe

Re: [PHP] Good PHP book?

2008-12-16 Thread Richard Heyes
>>> I learned from PHP For Dummies. >> >> The title of that book isn't doing itself any favours... :-) > >You'd be surprised. The "For Dummies" series is one of the > best-selling franchises in mainstream publishing history. Still, calling your audience dumb is generally regarded as being "a

Re: [PHP] Good PHP book?

2008-12-16 Thread Richard Heyes
> I learned from PHP For Dummies. The title of that book isn't doing itself any favours... :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vis

Re: [PHP] Chrome 1.0 released

2008-12-14 Thread Richard Heyes
> ... I tend to use this: http://www.upsdell.com/BrowserNews/stat.htm Source 5, because that is most similar to thecounter.com was before it went haywire. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mail

Re: [PHP] Chrome 1.0 released

2008-12-13 Thread Richard Heyes
ot feasible in reality. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Chrome 1.0 released

2008-12-13 Thread Richard Heyes
> Just to add, you could just stop coding for IE and alert users that IE > is not a supported browser. You may want to re-read my post. The graphs work in everything *but* IE. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated Decemb

Re: [PHP] Chrome 1.0 released

2008-12-13 Thread Richard Heyes
e that people need to be using Firefox, Opera, Chrome or Safari. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Chrome 1.0 released

2008-12-13 Thread Richard Heyes
ow that from > customers who are referring to IE as "the program on my computer's > desktop running the internet". So if Google can manage to transform > Chrome into the "internet program" M$ might be forced to make IE9 > support Richard's HTML5 graphing. I

Re: [PHP] Chrome 1.0 released

2008-12-13 Thread Richard Heyes
> Do you mean "as seen on /." ? I don't know, "dotslash" has a nice ring to it. Darn, the domains are gone... -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php

Re: [PHP] Chrome 1.0 released

2008-12-12 Thread Richard Heyes
> As seen on ./, it seems that Google may be pressing OEMs to include > Chrome bundled on new computers. That cannot happen with a beta web > browser. Great. Can't fault them. Even in its beta state, I think it's better than MSIE. I still use Firefox though... -- Richard He

[PHP] Chrome 1.0 released

2008-12-12 Thread Richard Heyes
Hi, Well it's not really related to PHP, but certainly web development in general. Personally, I was surprised by the jump from 0.4 to 1.0. Judging by other Google betas (eg Gmail) I was expecting it to be in beta for the next decade or so. -- Richard Heyes HTML5 Graphing for FF, Chrome,

Re: [PHP] pear Mail/Mime problem on new Ubuntu Linux server

2008-12-09 Thread Richard Heyes
> Might it be the Unix newline characters? Unlikely, IIRC the PEAR mime stuff uses \r\n (ie Windows). Try using the htmlMimeMail5 code here: http://www.phpguru.org/downloads/html.mime.mail/htmlMimeMail5/ -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.

[PHP] array_reverse() and garbage collection

2008-12-07 Thread Richard Heyes
ick in that often? From what I remember from an article by Derick Rethans, if the refcount is zero, then it gets cleaned up. Cheers. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated December 5th) -- PHP General Mailing List (http://www.php.net

Re: [PHP] IE8 and HTML5

2008-12-05 Thread Richard Heyes
Hi, >a client reported problems with a web app > written by me with IE8. Why on earth would you support a beta browser? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.ne

Re: [PHP] Help with IF ELSE

2008-12-04 Thread Richard Heyes
ditionally, redirects fail when you've sent output to the browser, even if its just whitespace. Your code looks OK, but check for it. The error reporting thang may help you with that. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated No

Re: [PHP] IE8 and HTML5

2008-12-04 Thread Richard Heyes
- until it gets close to a 1 version, I'm not going to worry about it. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] IE8 and HTML5

2008-12-04 Thread Richard Heyes
> I have less issues > with Chrome and its beta Not thrashing my HDD is also kinda basic, but Chrome 0.2 was more than happy to do that. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List

Re: [PHP] IE8 and HTML5

2008-12-04 Thread Richard Heyes
> I am running IE8 beta and its a PoS. Constantly crashing and flaky as shit. Point of Sale...? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

Re: [PHP] Does php 5.2.5 support imap4rev1 search criterias

2008-12-04 Thread Richard Heyes
query correct. No idea. Can you fake it? ie get all the message numbers, remove the ones that result from a BEFORE search. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubs

[PHP] IE8 and HTML5

2008-12-04 Thread Richard Heyes
ing to have to remain competitive? Wouldn't that be nice? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Does php 5.2.5 support imap4rev1 search criterias

2008-12-04 Thread Richard Heyes
php.net/manual/en/function.imap-search.php -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] imap4 search criterias

2008-12-03 Thread Richard Heyes
'm afraid). But try the manual: http://uk2.php.net/imap_search -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to type arguments

2008-12-02 Thread Richard Heyes
you're best off making sure that what you've been given is what you think it is. Ergo, what you've written, is what I would do. > or tu put (int) before each use... Not necessary to put it there for each use, just the first. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera a

Re: [PHP] XML RSS installation

2008-12-02 Thread Richard Heyes
> I apologize for the misunderstanding. That's OK, I forgive you my child. :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML RSS installation

2008-12-02 Thread Richard Heyes
>> htdocs <-- This the document root of your website pear + HTML + Mail >> + Net That's not what I wrote: htdocs <-- This the document root of your website pear + HTML + Mail + Net -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgrap

Re: [PHP] category and sub category traversal

2008-12-02 Thread Richard Heyes
ested in this: http://www.phpguru.org/downloads/Tree_array/Tree.phps Which looks at the same structure and creates a tree object from it. Using this you will be able to manage it. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- P

Re: [PHP] XML RSS installation

2008-12-02 Thread Richard Heyes
t root of your website pear + HTML + Mail + Net -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] XML RSS installation

2008-12-01 Thread Richard Heyes
ut personally I'd still go with this method. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Something to lighten the mood...

2008-11-30 Thread Richard Heyes
> tbh I'm most impressed with your remote php-general-list mood detection > script - how did you know? Sorry, no idea what you're talking about. I take there's been a heated (read: fun) discussion recently? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari:

Re: [PHP] Re: Something to lighten the mood...

2008-11-30 Thread Richard Heyes
>And here, when you said 'RBH' the first time, I thought you knew > Richard's middle name. bh == Benson & Hedges -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Mailing List

[PHP] Something to lighten the mood...

2008-11-29 Thread Richard Heyes
Just read this: How many Google Chrome users does it take to change a lightbulb? None. The lightbulb is isolated, so if it fails, the room doesn't go dark. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 29th) -- PHP General Ma

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Richard Heyes
> Happy Turkey Day to all who are working on Thanksgiving. That reminds me of a line from Friends... "Happy needless-turkey-murder day". :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Maili

Re: [PHP] Happy Turkey Day

2008-11-27 Thread Richard Heyes
> I do voice overs for free... I've ummm got a real sexy voice. If that's the case then you could put that to use and earn yourself a good deal of money... ;-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) --

Re: [PHP] how can I make an email bounce

2008-11-24 Thread Richard Heyes
Hi, > I need to make a bunch of emails bounce in different ways Carve them into some rubber and throw them at the flloor at different angles... :-) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing L

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Richard Heyes
> although the crapness of firefox 3 may change that a bit.. Keh? FF3 is great IMO. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

Re: [PHP] Re: anchor name on URL

2008-11-18 Thread Richard Heyes
ows WebKit, could make testing on IE9, Safari and Chrome a breeze. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: anchor name on URL

2008-11-18 Thread Richard Heyes
> You say that, have you heard the latest for IE9? They're already > planning it, and apparently it's going to use the Webkit engine! That would be nice, if only for the rather good canvas support, which I kinda have a vested interest in. -- Richard Heyes HTML5 Graphing for F

Re: [PHP] Scheduling scripts?

2008-11-18 Thread Richard Heyes
you want, but you might try looking at Google calendar. It's very good. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re[2]: [PHP] It's Sunday, and I'm bored...

2008-11-18 Thread Richard Heyes
> ... Hi, In looking at the manual regarding tagging, it seems an awful chore compared to CVS. Is this the generally held belief or do I need to go back and re-read? -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) --

Re: [PHP] PHP performance profiling

2008-11-18 Thread Richard Heyes
to install something on your server. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 15th) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Variable Argument List

2008-11-17 Thread Richard Heyes
> yup.. > Warning: func_get_args(): Called from the global scope - no > function context Doesn't the name of the function give you a clue as to its use? You need to call it inside a function. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgrap

Re: [PHP] ability to find include files...

2008-11-16 Thread Richard Heyes
erstand the "flow" of the apps. searching > via google hasn't really turned up anything... If the app has a support list, you could try asking for pointers on that. Or you could try the authors. -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.

Re: [PHP] Variable Argument List

2008-11-15 Thread Richard Heyes
> ... And you might also be interested in func_get_args(), which returns an array of args passed to the function (don't know what it does if used outside a function. Probably get an error). -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org

Re: [PHP] RegEx to check for non-Latin characters

2008-11-15 Thread Richard Heyes
and punctuation as well though. Or you could amend it to suit. It's in hexadecimal (ie FF == 255) -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Comparative performance

2008-11-14 Thread Richard Heyes
> What do you mean by compressed lib? JS? Javascript minification and HTTP gzip compression. Doing this got a 25k+ library down to 3.5k (!). -- Richard Heyes HTML5 Graphing for FF, Chrome, Opera and Safari: http://www.rgraph.org (Updated November 1st) -- PHP General Mailing List (h

<    1   2   3   4   5   6   7   8   9   >