Re: [PHP] in_array breaks down for 0 as value

2008-11-19 Thread Lars Torben Wilson
2008/11/19 Yashesh Bhatia <[EMAIL PROTECTED]>: > Hi. > > I wanted to use in_array to verify the results of a form submission > for a checkbox and found an interesting > behaviour. > > $ php -v > PHP 5.2.5 (cli) (built: Jan 12 2008 14:54:37) > $ > > $ cat in_array2.php > $node_review_types = array

[PHP] in_array breaks down for 0 as value

2008-11-19 Thread Yashesh Bhatia
Hi. I wanted to use in_array to verify the results of a form submission for a checkbox and found an interesting behaviour. $ php -v PHP 5.2.5 (cli) (built: Jan 12 2008 14:54:37) $ $ cat in_array2.php 'page', 'story' => 'story', 'noder

Re: [PHP] fread() behaviour

2008-11-19 Thread Craige Leeder
Rene Fournier wrote: So my question is, why does fread wait if there is nothing more to read? Shouldn't it return immediately? (That's what I want.) And as for the delay, it's there so that if the incoming data is a little slow, it has time to catch up with fread. Thanks. ...Rene I do belie

Re: [PHP] Invalid Arguements

2008-11-19 Thread Jim Lucas
Terion Miller wrote: Actually it did at one point have bannersize[#] # being the numbers 1-however many were there I've since gotten rid of that and made it a select. and gotten rid of the implode all together because it wouldn't work in either case and the more I read the more confused I got. Te

[PHP] fread() behaviour

2008-11-19 Thread Rene Fournier
I'm trying to understand something about fread(). I'm using fread() on an incoming socket stream that will send, for example, 26630 characters: while ( ($buf=fread($read[$i], 8192)) != '' ) { $sock_data .= $buf; usleep(1000); echo "."; } echo ","; As soon as th

Re: [PHP] while-question

2008-11-19 Thread Shawn McKenzie
bruce wrote: > interesting points regarding college and programming.. > > my degrees bsee/msee covered alot more than pure programing.. as a double > ee/cs, the ability to articulate an issue/problem, and bring to mind a cogent > thought process was valuable. the ability to understand how differ

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread tedd
At 7:44 PM + 11/19/08, Luke Slater wrote: What kind of thing is under Unknown? Well, if it was known, it wouldn't be unknown, right? Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] Re: PHP Warning: HTTP request failed -- BSD resource limit reached?

2008-11-19 Thread Rene Fournier
On 19-Nov-08, at 12:52 PM, Nathan Rixham wrote: Rene Fournier wrote: Hi, I have four identical command-line PHP scripts running, and each will frequently fetch some data from another server via file_get_contents(). By frequently, I mean on average, every second. Periodically, one of the pro

[PHP] Re: How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Nathan Rixham
Alice Wei wrote: Hi, I am inquiring on this list to see if it is possible to create a script that takes multiple update statements without my having to write one "SQL" statement for each of the updates. I have a scenario of which I create a table of some sort with some existing informati

Re: [PHP] Invalid Arguements

2008-11-19 Thread Robert Cummings
On Wed, 2008-11-19 at 19:49 +, Ashley Sheridan wrote: > On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: > > I am still getting the Invalid arguement error on this implode: > > > > if (isset($_POST['BannerSize'])){$BannerSize = > > implode(',',$_POST['BannerSize']);} else {$BannerSize =

RE: [PHP] Re: anchor name on URL

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Ashley Sheridan [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 1:43 PM > To: Boyd, Todd M. > Cc: PHP General Mailing List > Subject: RE: [PHP] Re: anchor name on URL > ---8<--- > > > Don't forget Konqueror in that list ;) It's not exactly the

Re: [PHP] How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Bastien Koert
On Wed, Nov 19, 2008 at 2:51 PM, Ashley Sheridan <[EMAIL PROTECTED]>wrote: > On Wed, 2008-11-19 at 18:51 +, Alice Wei wrote: > > Hi, > > > > I am inquiring on this list to see if it is possible to create a script > that takes multiple update statements without my having to write one "SQL" >

Re: [PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
Actually it did at one point have bannersize[#] # being the numbers 1-however many were there I've since gotten rid of that and made it a select. and gotten rid of the implode all together because it wouldn't work in either case and the more I read the more confused I got. Terion On Wed, Nov 19, 2

Re: [PHP] Invalid Arguements

2008-11-19 Thread Nathan Rixham
Ashley Sheridan wrote: On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: I am still getting the Invalid arguement error on this implode: if (isset($_POST['BannerSize'])){$BannerSize = implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} I have moved the ',', from the beginning to

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Nathan Rixham
Luke Slater wrote: On Wed, 19 Nov 2008, Ashley Sheridan wrote: On Wed, 2008-11-19 at 09:50 -0500, tedd wrote: Nathan Rixham wrote: well that bubble should have popped.. from some of my sites: Browser % visits Firefox 88.43% Internet Explorer 9.99% and At 12:25 PM + 11/19/08, Stu

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 19:44 +, Luke Slater wrote: > On Wed, 19 Nov 2008, Ashley Sheridan wrote: > > > On Wed, 2008-11-19 at 09:50 -0500, tedd wrote: > >> Nathan Rixham wrote: > >>> well that bubble should have popped.. > >>> > >>> from some of my sites: > >>> Browser % visits > >>> Firefox

[PHP] Re: PHP Warning: HTTP request failed -- BSD resource limit reached?

2008-11-19 Thread Nathan Rixham
Rene Fournier wrote: Hi, I have four identical command-line PHP scripts running, and each will frequently fetch some data from another server via file_get_contents(). By frequently, I mean on average, every second. Periodically, one of the processes (command-line PHP scripts), will fail on

Re: [PHP] How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 18:51 +, Alice Wei wrote: > Hi, > > I am inquiring on this list to see if it is possible to create a script > that takes multiple update statements without my having to write one "SQL" > statement for each of the updates. > > I have a scenario of which I create

Re: [PHP] Invalid Arguements

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 08:31 -0600, Terion Miller wrote: > I am still getting the Invalid arguement error on this implode: > > if (isset($_POST['BannerSize'])){$BannerSize = > implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} > > I have moved the ',', from the beginning to the end of th

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Luke Slater
On Wed, 19 Nov 2008, Ashley Sheridan wrote: On Wed, 2008-11-19 at 09:50 -0500, tedd wrote: Nathan Rixham wrote: well that bubble should have popped.. from some of my sites: Browser % visits Firefox 88.43% Internet Explorer 9.99% and At 12:25 PM + 11/19/08, Stut wrote: Firefox is

RE: [PHP] Re: anchor name on URL

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 08:27 -0600, Boyd, Todd M. wrote: > > -Original Message- > > From: Ashley Sheridan [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, November 18, 2008 5:58 PM > > To: Richard Heyes > > Cc: Yeti; Boyd, Todd M.; PHP General Mailing List > > Subject: Re: [PHP] Re: anchor name

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 09:50 -0500, tedd wrote: > Nathan Rixham wrote: > >well that bubble should have popped.. > > > >from some of my sites: > >Browser % visits > >Firefox 88.43% > >Internet Explorer 9.99% > > and > > At 12:25 PM + 11/19/08, Stut wrote: > >Firefox is certainly gaining,

RE: [PHP] How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Alice Wei
Hi, Todd: Each of my query snippets look something in the following format: UPDATE product SET product_name = 'SQL Tool UltraLight' AND price='1000' AND sales='200' AND export='299' AND import='399' ... WHERE id = '1001' I don't think I am allowed to JOIN these queries in the f

[PHP] How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Alice Wei
Hi, I am inquiring on this list to see if it is possible to create a script that takes multiple update statements without my having to write one "SQL" statement for each of the updates. I have a scenario of which I create a table of some sort with some existing information using Flex,

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Ashley Sheridan
On Wed, 2008-11-19 at 01:57 -0800, Yeti wrote: > > Now I tend only to use it now for file management, FTP and testing > > websites. > Beware that Konqueror has changed with KDE4. Now its main purpose is > to be a web browser, whereas the new program "Dolphin" is used for > file management etc. > I

RE: [PHP] How to Execute Multiple SQL Updates Using PHP

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Alice Wei [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 12:51 PM > To: php-general@lists.php.net > Subject: [PHP] How to Execute Multiple SQL Updates Using PHP > > I am inquiring on this list to see if it is possible to create a > script that

[PHP] PHP Warning: HTTP request failed -- BSD resource limit reached?

2008-11-19 Thread Rene Fournier
Hi, I have four identical command-line PHP scripts running, and each will frequently fetch some data from another server via file_get_contents(). By frequently, I mean on average, every second. Periodically, one of the processes (command-line PHP scripts), will fail on file_get_contents()

Re: [PHP] HTTP Authentication [ SOLVED ]

2008-11-19 Thread Andrew Ballard
On Wed, Nov 19, 2008 at 12:47 PM, Thiago H. Pojda <[EMAIL PROTECTED]> wrote: > On Wed, Nov 19, 2008 at 12:15 PM, Andrew Ballard <[EMAIL PROTECTED]> wrote: >> >> On Wed, Nov 19, 2008 at 9:26 AM, Thiago H. Pojda <[EMAIL PROTECTED]> >> wrote: >> > Guys, >> > >> > I have to access a WS that uses HTTP a

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Robert Cummings
On Wed, 2008-11-19 at 07:09 -0800, Yeti wrote: > I think it's also interesting to know what browsers web developers prefer [1]. Opera, but Firefox with Firebug if the JavaScript gets sticky. > Also what people would like to know more about [2]. Huh? > Number 1: howto kiss Depends... are we kis

Re: [PHP] mysql_fetch_object and modulo %

2008-11-19 Thread Robert Cummings
On Wed, 2008-11-19 at 10:12 -0500, Andrew Ballard wrote: > On Wed, Nov 19, 2008 at 9:32 AM, Craige Leeder <[EMAIL PROTECTED]> wrote: > > Alain Roger wrote: > >> > >> Hi, > >> > >> how can i do to test if the row number (record number) sent by > >> mysql_fetch_object is odd or even ? > >> i mean tha

Re: [PHP] HTTP Authentication [ SOLVED ]

2008-11-19 Thread Thiago H. Pojda
On Wed, Nov 19, 2008 at 2:49 PM, Boyd, Todd M. <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Thiago H. Pojda [mailto:[EMAIL PROTECTED] > > Sent: Wednesday, November 19, 2008 11:47 AM > > To: Andrew Ballard > > Cc: PHP-General List > > Subject: Re: [PHP] HTTP Authentication [

RE: [PHP] HTTP Authentication [ SOLVED ]

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Thiago H. Pojda [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 11:47 AM > To: Andrew Ballard > Cc: PHP-General List > Subject: Re: [PHP] HTTP Authentication [ SOLVED ] > > On Wed, Nov 19, 2008 at 12:15 PM, Andrew Ballard <[EMAIL PROTECTED]> > wr

Re: [PHP] HTTP Authentication [ SOLVED ]

2008-11-19 Thread Thiago H. Pojda
On Wed, Nov 19, 2008 at 12:15 PM, Andrew Ballard <[EMAIL PROTECTED]> wrote: > On Wed, Nov 19, 2008 at 9:26 AM, Thiago H. Pojda <[EMAIL PROTECTED]> > wrote: > > Guys, > > > > I have to access a WS that uses HTTP auth directly with PHP. > > > > I've tried using the usual http://user:[EMAIL PROTECTED

RE: [PHP] while-question

2008-11-19 Thread bruce
interesting points regarding college and programming.. my degrees bsee/msee covered alot more than pure programing.. as a double ee/cs, the ability to articulate an issue/problem, and bring to mind a cogent thought process was valuable. the ability to understand how different algorithms worked,

Re: [PHP] Scheduling scripts?

2008-11-19 Thread tedd
At 6:36 PM -0500 11/18/08, Daniel P. Brown wrote: Strictly a public calendar, Tedd, or one with a full registration and appointment-setting system? Daniel: The project is to tie students to classes for online registration. The client was using Google's Calendar system, but is now wanting

Re: [PHP] Invalid Arguements

2008-11-19 Thread Stut
On 19 Nov 2008, at 15:39, Terion Miller wrote: I've been trying to catch on to php on the fly, I started with Cold fusion years ago then did asp for a long time, for some reason php gives me problems, it doesn't at all seem intuitive to me or even logical for that matterguess I'm just us

Re: [PHP] Invalid Arguements

2008-11-19 Thread Andrew Ballard
On Wed, Nov 19, 2008 at 10:39 AM, Terion Miller <[EMAIL PROTECTED]> wrote: > I've been trying to catch on to php on the fly, I started with Cold fusion > years ago then did asp for a long time, for some reason php gives me > problems, it doesn't at all seem intuitive to me or even logical for that

Re: [PHP] Invalid Arguements

2008-11-19 Thread Yeti
> when I use the var_dump as suggested I get: > *Parse error*: syntax error, unexpected '<' in * > C:\Inetpub\wwwroot\WorkOrderSystem\WorkOrder.php* on line *136* I guess that means you tried something like this ... EXAMPLE: ?> Can you see what PHP does not like here? It's the second "http://w

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
From: Terion Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 9:39 AM To: Boyd, Todd M. Cc: PHP General Mailing List Subject: Re: [PHP] Invalid Arguements I've been trying to catch on to php on the fly, I started with Cold fusion years ago then did asp for a long time, for som

Re: [PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
I've been trying to catch on to php on the fly, I started with Cold fusion years ago then did asp for a long time, for some reason php gives me problems, it doesn't at all seem intuitive to me or even logical for that matterguess I'm just used to the easy stuff. when I use the var_dump as sugg

RE: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Yeti [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 9:09 AM > To: PHP General Mailing List > Subject: Re: [PHP] Stats (was anchor name on URL) > > I think it's also interesting to know what browsers web developers > prefer [1]. > > Also what pe

Re: [PHP] HTTP Authentication

2008-11-19 Thread Andrew Ballard
On Wed, Nov 19, 2008 at 9:26 AM, Thiago H. Pojda <[EMAIL PROTECTED]> wrote: > Guys, > > I have to access a WS that uses HTTP auth directly with PHP. > > I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get > it > working. I believe it has something to do with the password c

Re: [PHP] mysql_fetch_object and modulo %

2008-11-19 Thread Andrew Ballard
On Wed, Nov 19, 2008 at 9:32 AM, Craige Leeder <[EMAIL PROTECTED]> wrote: > Alain Roger wrote: >> >> Hi, >> >> how can i do to test if the row number (record number) sent by >> mysql_fetch_object is odd or even ? >> i mean that: >> while ($row = mysql_fetch_object($result)) >>{ >> if($row%2

Re: [PHP] Stats (was anchor name on URL)

2008-11-19 Thread Yeti
I think it's also interesting to know what browsers web developers prefer [1]. Also what people would like to know more about [2]. Number 1: howto kiss Number 5: howto hack (lol?) [1] http://www.w3schools.com/browsers/browsers_stats.asp [2] http://www.google.com/intl/en/press/zeitgeist2007/mind.h

[PHP] Re: HTTP Authentication

2008-11-19 Thread Nathan Rixham
Thiago H. Pojda wrote: Guys, I have to access a WS that uses HTTP auth directly with PHP. I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get it working. I believe it has something to do with the password containing a # (can't change it) and the browser thinks it's an a

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
Taking this back on-list... From: Terion Miller [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 19, 2008 8:44 AM To: Boyd, Todd M. Subject: Re: [PHP] Invalid Arguements I don't know how to run is_array this is the problem I'm a designer that is stuck doing a coders job On Wed, Nov 19, 20

Re: [PHP] Invalid Arguements

2008-11-19 Thread Yeti
if you what do you get? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Stats (was anchor name on URL)

2008-11-19 Thread tedd
Nathan Rixham wrote: well that bubble should have popped.. from some of my sites: Browser % visits Firefox 88.43% Internet Explorer 9.99% and At 12:25 PM + 11/19/08, Stut wrote: Firefox is certainly gaining, as is Safari, but IE is still the dominant player by far. To all: While

RE: [PHP] HTTP Authentication

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Craige Leeder [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 8:35 AM > To: Thiago H. Pojda > Cc: PHP-General List > Subject: Re: [PHP] HTTP Authentication > > Thiago H. Pojda wrote: > > Guys, > > > > I have to access a WS that uses HTTP auth dir

Re: [PHP] HTTP Authentication

2008-11-19 Thread Thiago H. Pojda
On Wed, Nov 19, 2008 at 11:34 AM, Craige Leeder <[EMAIL PROTECTED]> wrote: > Thiago H. Pojda wrote: > >> Guys, >> >> I have to access a WS that uses HTTP auth directly with PHP. >> >> I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get >> it >> working. I believe it has so

RE: [PHP] Invalid Arguements

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Terion Miller [mailto:[EMAIL PROTECTED] > Sent: Wednesday, November 19, 2008 8:32 AM > To: php-general@lists.php.net > Subject: [PHP] Invalid Arguements > > I am still getting the Invalid arguement error on this implode: > > if (isset($_POST['BannerSize'])){$B

Re: [PHP] HTTP Authentication

2008-11-19 Thread Craige Leeder
Thiago H. Pojda wrote: Guys, I have to access a WS that uses HTTP auth directly with PHP. I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get it working. I believe it has something to do with the password containing a # (can't change it) and the browser thinks it's an a

Re: [PHP] mysql_fetch_object and modulo %

2008-11-19 Thread Craige Leeder
Alain Roger wrote: Hi, how can i do to test if the row number (record number) sent by mysql_fetch_object is odd or even ? i mean that: while ($row = mysql_fetch_object($result)) { if($row%2 == 1) { ... } } the $row doesn't return a value... like 1, 2 or 6 for exampl

[PHP] Invalid Arguements

2008-11-19 Thread Terion Miller
I am still getting the Invalid arguement error on this implode: if (isset($_POST['BannerSize'])){$BannerSize = implode(',',$_POST['BannerSize']);} else {$BannerSize = "";} I have moved the ',', from the beginning to the end of the statement and nothing works is there any other way to do this, bas

RE: [PHP] Re: anchor name on URL

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Ashley Sheridan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 18, 2008 5:58 PM > To: Richard Heyes > Cc: Yeti; Boyd, Todd M.; PHP General Mailing List > Subject: Re: [PHP] Re: anchor name on URL > > On Tue, 2008-11-18 at 23:51 +, Richard Heyes wrote:

[PHP] HTTP Authentication

2008-11-19 Thread Thiago H. Pojda
Guys, I have to access a WS that uses HTTP auth directly with PHP. I've tried using the usual http://user:[EMAIL PROTECTED]/ but I couldn't get it working. I believe it has something to do with the password containing a # (can't change it) and the browser thinks it's an achor or something. All I

RE: [PHP] Re: anchor name on URL

2008-11-19 Thread Boyd, Todd M.
> -Original Message- > From: Ashley Sheridan [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 18, 2008 5:09 PM > To: Yeti > Cc: Boyd, Todd M.; PHP General Mailing List > Subject: Re: [PHP] Re: anchor name on URL > > On Tue, 2008-11-18 at 14:58 -0800, Yeti wrote: > > > I look forward to

Re: [PHP] NetBeans & xdebug

2008-11-19 Thread Craige Leeder
Gishaust wrote: Are using linux as an os because if you are I am having trouble with getting xdebug to talk to netbeans Nope, sorry. Vista -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mysql_fetch_object and modulo %

2008-11-19 Thread Nathan Rixham
Alain Roger wrote: Hi, how can i do to test if the row number (record number) sent by mysql_fetch_object is odd or even ? i mean that: while ($row = mysql_fetch_object($result)) { if($row%2 == 1) { ... } } the $row doesn't return a value... like 1, 2 or 6 for exampl

[PHP] mysql_fetch_object and modulo %

2008-11-19 Thread Alain Roger
Hi, how can i do to test if the row number (record number) sent by mysql_fetch_object is odd or even ? i mean that: while ($row = mysql_fetch_object($result)) { if($row%2 == 1) { ... } } the $row doesn't return a value... like 1, 2 or 6 for example... thx. F

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Per Jessen
Richard Heyes wrote: >> although the crapness of firefox 3 may change that a bit.. > > Keh? FF3 is great IMO. > FF2 and FF# are not 100% compatible which made some of our web interfaces look wrong in FF3. I haven't been able to find the problem yet: FF2: http://jessen.ch/images/sam-menu-ff2.

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Nathan Rixham
Richard Heyes wrote: although the crapness of firefox 3 may change that a bit.. Keh? FF3 is great IMO. I thought that at first as well, then I noticed it was a bit unstable on windows xp/media center/tablet edition, on all my machines, then talked to workmates, friends, partner etc and th

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.net/unsub

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Nathan Rixham
Per Jessen wrote: Nathan Rixham wrote: Per Jessen wrote: Nathan Rixham wrote: i never understand this, if i was makign a browser I'd be "where's the rfc's" then code it to implement those rfc's - why people choose not to is beyond me? World domination is part of the reasoning ... /Per Jes

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Stut
On 19 Nov 2008, at 12:01, Nathan Rixham wrote: from some of my sites: Browser % visits Firefox 88.43% Internet Explorer 9.99% Firefox 46.89% Internet Explorer 37.66% Opera 7.36% Safari 5.39% Chrome 2.17% Firefox 46.80% Internet Explorer 42.45% Safari 5.36% Opera 3.07% Mozilla 1.22% although th

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Per Jessen
Nathan Rixham wrote: > Per Jessen wrote: >> Nathan Rixham wrote: >> >>> i never understand this, if i was makign a browser I'd be "where's >>> the rfc's" then code it to implement those rfc's - why people choose >>> not to is beyond me? >> >> World domination is part of the reasoning ... >> >>

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Nathan Rixham
Per Jessen wrote: Nathan Rixham wrote: Though I always script to W3 Standards, I could care less if browsers follow those standards, so long as we wind up closer and closer to a general set of rules we can obide by. Uh, only as long as that general set of rules is well documented. /Per Jesse

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Per Jessen
Nathan Rixham wrote: >>> Though I always script to W3 Standards, I could care less if >>> browsers follow those standards, so long as we wind up closer and >>> closer to a general set of rules we can obide by. >> >> Uh, only as long as that general set of rules is well documented. >> >> >> /Per

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Nathan Rixham
Per Jessen wrote: Craige Leeder wrote: Micah Gersten wrote: I'd rather all the engines follow the W3C standards so that you just have to make sure your web page is compliant. Thank you, Micah Gersten onShore Networks Internal Developer http://www.onshore.com Though I always script to W3

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Lester Caine
Yeti wrote: Just battling that fiasco myself. Konqueror and Dolphin combination just does not work for me which is a pity - and KDE4 . I was pointed to xfce which seems to be much more practical :) Having ditched the Windows 'development machine' everything is now on a nice linux box, but I

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Per Jessen
Craige Leeder wrote: > Micah Gersten wrote: >> I'd rather all the engines follow the W3C standards so that you just >> have to make sure your web page is compliant. >> >> Thank you, >> Micah Gersten >> onShore Networks >> Internal Developer >> http://www.onshore.com >> >> > Though I always scri

Re: [PHP] Re: anchor name on URL

2008-11-19 Thread Yeti
> Now I tend only to use it now for file management, FTP and testing > websites. Beware that Konqueror has changed with KDE4. Now its main purpose is to be a web browser, whereas the new program "Dolphin" is used for file management etc. -- PHP General Mailing List (http://www.php.net/) To unsubs