Re: [PHP] References challenge with PHP4

2007-03-19 Thread Lluis Pamies
En/na Jochem Maas ha escrit: Lluis Pamies wrote: I've the following code: 1 a = &$a; 6 } 7 8 function run() { 9 print "{$this->a->msg}\n"; 10 } 11 } 12 13 class A { 14 function A() { 15 $this->b = new B(&$this); 16 } 17 18 function &getInstance() { 19 stat

Re: [PHP] install problems

2007-03-19 Thread jekillen
On Mar 19, 2007, at 5:58 PM, Chris wrote: jekillen wrote: On Mar 18, 2007, at 10:54 PM, Chris wrote: jekillen wrote: Hello; Well, this one I cannot seem to figure out: I installed Apache 1.3.37 with ./configure --enable-module=so --enable-module=rewrite --enable-shared=max Then tried to in

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Robert Cummings
On Mon, 2007-03-19 at 23:58 -0400, markw@mohawksoft.com wrote: > > I'm not a web developer. I suck at PHP, I do know PHP, I've written a > number of PHP extensions, and have had my CVS account for about 8 years, > but I'm not a web developer. I'm an architect and it is problematic when > applicatio

Re: [PHP] Name Capitalization

2007-03-19 Thread Paul Novitski
At 3/19/2007 07:17 PM, Leonard Burton wrote: What my case is that I have came across a list of names that I need to use and all of the names were in caps. From there anything is a step in the right direction. As you know, anytime you parse anything in bulk there will be exceptions to the rule.

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Chris
markw@mohawksoft.com wrote: markw@mohawksoft.com wrote: markw@mohawksoft.com wrote: On Sat, 2007-03-17 at 12:19 -0400, Mark wrote: There in lies the biggest problem with LAMP, and that's MySQL. The architecture of your methodology *only* works with MySQL, and not more capable databases like Or

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread markw
> markw@mohawksoft.com wrote: >>> markw@mohawksoft.com wrote: > On Sat, 2007-03-17 at 12:19 -0400, Mark wrote: >> There in lies the biggest problem with LAMP, and that's MySQL. The architecture of your methodology *only* works with MySQL, and not more capable databases like Oracl

Re: [PHP] Name Capitalization

2007-03-19 Thread Leonard Burton
HI Paul, Thanks for the reply. Applying capitalization rules to names by itself is easy. What defeats the effort is that there are no consistent rules for name capitalization, only inconsistent ones. What my case is that I have came across a list of names that I need to use and all of the na

Re: [PHP] Name Capitalization

2007-03-19 Thread Paul Novitski
Applying capitalization rules to names by itself is easy. What defeats the effort is that there are no consistent rules for name capitalization, only inconsistent ones. MacDonald and Macdonald are both common and are both correct. de la Rosa, De la Rosa, De La Rosa, Delarosa. Van der Berg,

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sun, March 18, 2007 4:14 am, Jim Lucas wrote: >> There in lies the biggest problem with LAMP, and that's MySQL. The >> architecture of your methodology *only* works with MySQL, and not >> more >> capable databases like Oracle, DB2, or even PostgreSQL. > I too thought the same thing, but was corr

Re: [PHP] install problems

2007-03-19 Thread Chris
jekillen wrote: On Mar 18, 2007, at 10:54 PM, Chris wrote: jekillen wrote: Hello; Well, this one I cannot seem to figure out: I installed Apache 1.3.37 with ./configure --enable-module=so --enable-module=rewrite --enable-shared=max Then tried to install php 5.2.1 --with-apxs=/usr/local/apac

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sat, March 17, 2007 1:08 pm, markw@mohawksoft.com wrote: > There in lies the biggest problem with LAMP, and that's MySQL. The > architecture of your methodology *only* works with MySQL, and not more > capable databases like Oracle, DB2, or even PostgreSQL. Therein lies the biggest problem of mo

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sat, March 17, 2007 11:19 am, Mark wrote: > insert into the_table (..., email,..); > select user_id from the_table where email = '...'; > > Is probably the best way given the nature of the table and skill level > of > the developer asking the question. $query = "insert into the_table(...)"; mys

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Jim Lucas
Chris wrote: markw@mohawksoft.com wrote: markw@mohawksoft.com wrote: On Sat, 2007-03-17 at 12:19 -0400, Mark wrote: There in lies the biggest problem with LAMP, and that's MySQL. The architecture of your methodology *only* works with MySQL, and not more capable databases like Oracle, DB2, or

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sat, March 17, 2007 10:16 am, Robert Cummings wrote: > No, it's a MySQL specific feature that is atomic with the insert and > so > you are guaranteed that the the returned ID is the exact automatic ID > associated with the most recent INSERT for the connection handle. > Unfortunately auto increm

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sat, March 17, 2007 9:43 am, Myron Turner wrote: > An earlier post called attention to a concurrency problem. Wouldn't > getting the last inserted ID from LAST_INSERT_ID() > suffer from the same limitations as any of the other solutions which > do > a select to get the last ID? I assume if you

Re: [PHP] Hive Dekoder [SOLVED]

2007-03-19 Thread Richard Lynch
On Fri, March 9, 2007 5:07 pm, Richard Lynch wrote: > Short Version: > Anybody got a good quick clean hack to "crack" Hive Logic Enkoder? First, thanks for all the leads and ideas and pointers on this! The short version solution is: Get Spidermonkey. Long version: After dinking around for a co

Re: [PHP] PECL help

2007-03-19 Thread Mike Payson
PHP runs as CGI, so it shouldn't cause any problem other then possibly with my script-- or am I missing something? On 3/19/07, Richard Lynch <[EMAIL PROTECTED]> wrote: On Sun, March 18, 2007 9:28 pm, Mike Payson wrote: > I'm trying to install the extension runkit on my shared server. I E.

RE: [PHP] Can't get PHP errors to display or log consistently

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 12:57 pm, Chris W. Parker wrote: > On Friday, March 16, 2007 4:04 PM Robert Cummings > said: > > Update: > > Now that I've corrected my mistake in php.ini and set the level of > error > reporting that I want I can see *most* errors. > > But shouldn'

Re: [PHP] logging erros and user access to logs

2007-03-19 Thread Richard Lynch
On Thu, March 15, 2007 4:08 pm, Jason Joines wrote: > "Invalid command 'phpflag', perhaps mis-spelled or defined by a module php_flag error_reporting 0 Or, perhaps, these days: php_value error_reporting 0 I forget what the outcome of the php_flag debacle was... but phpflag with no _ in it ain

Re: [PHP] php bar/graph scripts/library

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 4:29 am, Shafiq Rehman wrote: > You can create graphs with Flash. Here is the link > http://www.maani.us/charts/index.php This didn't create any graphs for me. Just puzzle pieces. :-) :-) :-) -- Some people have a "gift" link here. Know what I want? I want you to buy a CD

Re: [PHP] php bar/graph scripts/library

2007-03-19 Thread Richard Lynch
JP Graph is often recommended. So often that you probably should have been able to find it on your own... On Thu, March 15, 2007 10:07 pm, Ron Croonenberg wrote: > hello all, > > I am looking for some scripts/libraries etc to produce some bar > graphs etc. > > Does anyone know of something "ni

Re: [PHP] CONTENT-type for sending HTML attachments

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 10:16 am, Angelo Zanetti wrote: > Im using the HTML Mime Mail > class from phpguru.org. > Anyway I've written a few scripts that use the class to attach files > to > it. These files are HTML reports but Im not sure what MIME > co

[PHP] PHP stats package thread

2007-03-19 Thread Richard Lynch
I just realized I typed 'anacron' where I meant 'analog' Duh. Sorry. And this isn't even threaded properly because I already deleted the other messages. Sigh. -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from some starving artist. http://cdbaby.com/browse/f

Re: [PHP] a php stats package

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 10:57 am, Ross wrote: > Can someone recommend one please? Do you mean like 'webalizer' or 'anacron' which give stats about web traffic? Or do you mean a statistical analysis package for things like 'average'a and 'amortization' written in PHP? [shudder] -- Some people hav

Re: [PHP] form not submitting inofrmation

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 1:05 pm, Bruce Gilbert wrote: > I have a form on my website, that used to work, but I just realized > that now it doesn't. You don't get any errors, but I am not receiving > an email with the information after the submittal. > > The form is located at http://www.inspired-evol

Re: [PHP] Re: Getting last record ID created from DB

2007-03-19 Thread Chris
markw@mohawksoft.com wrote: markw@mohawksoft.com wrote: On Sat, 2007-03-17 at 12:19 -0400, Mark wrote: There in lies the biggest problem with LAMP, and that's MySQL. The architecture of your methodology *only* works with MySQL, and not more capable databases like Oracle, DB2, or even PostgreS

Re: [PHP] Can't get PHP errors to display or log consistently

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 2:30 pm, Chris W. Parker wrote: > Using CentOS 4 and I can't get errors to display on the page AT ALL or > log errors consistently. Some errors get logged (forgetting to us > $this-> in a class for example) but most don't. > > I've tried: > * using .htaccess to set the er

Re: [PHP] Is there a open_basedir and curl followlocation bypass/fix?

2007-03-19 Thread Chris
Richard Lynch wrote: So open_basedir settings are mucking with curl's CURLOPT_FOLLOWLOCATION? That seems pretty whack to this naive reader... Guess you are stuck reading the headers and doing as many more curl_exec()s on the Location: as it takes. Yep, from version 5.2.0. http://www.php.net/

Re: [PHP] Re: Re: Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Sat, March 17, 2007 9:48 am, Mark wrote: > I often wonder, looking at these questions, what is the state of the > web? If > any notable percent of it is written with this much basic ignorance of > computing, then the web is basically broken. The web *IS* basically broken. But large chunks of i

Re: [PHP] Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 10:37 pm, Rod Person wrote: > select user_id from t_users where user_id = (select max(user_id) from > t_users) Noo! This is a "race condition" Imagine, if you will, that *TWO* users sign up and create characters on your site at the exact same time: Lee

Re: [PHP] Getting last record ID created from DB

2007-03-19 Thread Richard Lynch
On Fri, March 16, 2007 10:28 pm, Jeff wrote: > Is there a way to get the last Record # created by the DB. Yes, but... > Example: > > User_ID = auto_increment > f_name = varchar > l_name = varchar > e-mail = varchar > b_date = varchar > pic = varchar > > > Since user_id is an auto_inc field I subm

Re: [PHP] glob(path_pattern, GLOB_ONLYDIR)

2007-03-19 Thread Richard Lynch
On Sun, March 18, 2007 4:30 am, Jim Lucas wrote: > Al wrote: >> print_r(glob('../*', GLOB_ONLYDIR)); > well, double check your php version, because this should be built in > whit the version that you are running. > >> >> And I get: "Warning: glob() expects parameter 2 to be long, string >> given >

Re: [PHP] Is there a open_basedir and curl followlocation bypass/fix?

2007-03-19 Thread Richard Lynch
So open_basedir settings are mucking with curl's CURLOPT_FOLLOWLOCATION? That seems pretty whack to this naive reader... Guess you are stuck reading the headers and doing as many more curl_exec()s on the Location: as it takes. On Mon, March 19, 2007 5:15 am, Mathijs wrote: > Jochem Maas wrote: >

Re: [PHP] Preventing unwanted chars from outputting

2007-03-19 Thread Richard Lynch
On Sun, March 18, 2007 2:55 pm, Larry Garfield wrote: >> I found the following to be quite informative: >> >> http://www.joelonsoftware.com/articles/Unicode.html > > I do like Joel's style... :-) His style is fine, though his factually incorrect rant about PHP some years ago was annoying... -

Re: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Bruce Cowin
Yes, there is a PHP-WIN list. Much less volumn than this list. We run PHP on Windows using IIS. So far haven't had any problems. But we've been using it on intranet only sites and not very intensive or complicated. Regards, Bruce >>> "Richard Lynch" <[EMAIL PROTECTED]> 20/03/2007 11:28:14

Re: [PHP] Preventing unwanted chars from outputting

2007-03-19 Thread Richard Lynch
On Sun, March 18, 2007 5:57 am, Don Don wrote: > my program outputs some characters along with text from the > database, these texts contain chars like ‘ ’. How can i get rid > of theses chars and display their meaning instead ? I am thinking > htmlspecialchars or html entities will do the

Re: [PHP] PECL help

2007-03-19 Thread Richard Lynch
On Sun, March 18, 2007 9:28 pm, Mike Payson wrote: > I'm trying to install the extension runkit on my shared server. I E. I don't think you want to do that... I mean, it's just going to be WAY too easy to crash things in a Big Way and have your webhost very angry with you... Set it up on yo

Re: [PHP] install problems

2007-03-19 Thread jekillen
On Mar 18, 2007, at 10:54 PM, Chris wrote: jekillen wrote: Hello; Well, this one I cannot seem to figure out: I installed Apache 1.3.37 with ./configure --enable-module=so --enable-module=rewrite --enable-shared=max Then tried to install php 5.2.1 --with-apxs=/usr/local/apache/bin etc etc li

Re: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 3:39 am, Angelo Zanetti wrote: > I would like some honest answers and if you have any experience with > problems or no problems running PHP on a windows server. Let me put it this way: Core PHP will not make Windows any less stable than it already is. That means that if you

Re: [PHP] php search engine

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 5:21 am, Ross wrote: > I am looking for a php search engine that provides a suggested words > (soundex?) when items are misspelt, the way google does. > > I have used http://www.site-search-pro.com/ i n the past which is > great but > as far as I know this feature is not incl

Re: [PHP] Out source files

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 1:46 pm, Manuel Vacelet wrote: > 2007/3/19, Richard Lynch <[EMAIL PROTECTED]>: >> On Mon, March 19, 2007 12:46 pm, Manuel Vacelet wrote: >> > I would like to know if there is some common patterns to "out >> source" >> > the files served by a LAMP stack. >> > >> > Technicaly s

Re: [PHP] Name Capitalization

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 12:24 pm, Leonard Burton wrote: > Oops, I messed this request up. > > It should have read: > > For instance, McDonald needs to remain that way even if it comes in as > MCDONALD, or mcdonald. You're wrong. You're wrong, because for some people, it is NOT capitalized McDonal

Re: [PHP] Name Capitalization

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 11:22 am, Leonard Burton wrote: > Does anyone use a library to properly capitalize last names? > > For instance, McDonald needs to remain that way even if it comes in as > MACDONALD, or macdonald. > > Of course I can write it on my own but would prefer not to reinvent > the w

Re: [PHP] time or date picker ?

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 2:11 pm, Alain Roger wrote: > I've already seen some webpages which include a time or date picker > (like a > calendar) written in PHP and on which user could type the year and > after, > select the month and date (using month). > I'm looking for something like that. > > Wher

[PHP] Amazon AWS + SimpleXML

2007-03-19 Thread Brad Fuller
Hey guys, I'm having trouble trying to parse XML results from an Alexa Web information service from amazon.com, using SimpleXML. Here is an example response: http://alexa.amazonaws.com/doc/2005-10-05/";>http://awis.amazonaws.com/doc/2005-07-11";>< aws:RequestId>cdfcc49c-5c01-4fc1-87e4-06f2f151e

Re: [PHP] newbie question

2007-03-19 Thread Janet Valade
bob pilly wrote: Hi all Can anyone tell me what '&' means before a var? e.g function(&$var) http://us3.php.net/manual/en/language.references.php Janet -- Janet Valade -- janet.valade.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

Re: [PHP] newbie question

2007-03-19 Thread Robert Cummings
On Mon, 2007-03-19 at 20:10 +, bob pilly wrote: > Hi all > > Can anyone tell me what '&' means before a var? > > e.g function(&$var) It means the variable is passed into the function as a reference. Changes to the value of the variable will be reflected outside of the function in the variab

Re: [PHP] Name Capitalization

2007-03-19 Thread Paul Fierro
On 3/19/07 12:24 PM, Leonard Burton <[EMAIL PROTECTED]> wrote: > Yeah, nothing is a "perfect solution" but anything is better than nothing. > > Guys, Thanks for the replies and the link to the recent thread, even > though that didn't discuss any solutions to the problem I am asking > about (other

[PHP] newbie question

2007-03-19 Thread bob pilly
Hi all Can anyone tell me what '&' means before a var? e.g function(&$var) Thanks for any help in advance ___ What kind of emailer are you? Find out today - get a free analysis of your email personality. Take the qui

Re: [PHP] Name Capitalization

2007-03-19 Thread Robert Cummings
On Mon, 2007-03-19 at 15:33 -0400, Leonard Burton wrote: > > This project shouldn't be that hard as there are probably only 10 to > 15 rules for names. Ummm, April 1st is still almost 3 weeks away. Cheers, Rob. -- .. | InterJinn Applica

Re: [PHP] Name Capitalization

2007-03-19 Thread Leonard Burton
HI Chris, Here is one option. Make a long list (array) of search/replace pairs and loop through your text replacing as necessary. 'mcdonald' => 'McDonald' 'mcdowell' => 'McDowell' 'o\'reilly' => 'O\'Reilly' 'de la rosa' => 'De La Rosa' etc ad nauseum... I think the better solution would be so

[PHP] Re: time or date picker ?

2007-03-19 Thread Manuel Lemos
Hello, on 03/19/2007 04:11 PM Alain Roger said the following: > Hi, > > I've already seen some webpages which include a time or date picker (like a > calendar) written in PHP and on which user could type the year and after, > select the month and date (using month). > I'm looking for something li

Re: [PHP] time or date picker ?

2007-03-19 Thread Tijnema !
On 3/19/07, Alain Roger <[EMAIL PROTECTED]> wrote: Hi, I've already seen some webpages which include a time or date picker (like a calendar) written in PHP and on which user could type the year and after, select the month and date (using month). I'm looking for something like that. Where can i

RE: [PHP] Name Capitalization

2007-03-19 Thread Chris W. Parker
On Monday, March 19, 2007 10:24 AM Leonard Burton said: > For instance, McDonald needs to remain that way even if it comes in as > MCDONALD, or mcdonald. [snip] > Yeah, nothing is a "perfect solution" but anything is better than > nothing. That's probably true when you'

[PHP] time or date picker ?

2007-03-19 Thread Alain Roger
Hi, I've already seen some webpages which include a time or date picker (like a calendar) written in PHP and on which user could type the year and after, select the month and date (using month). I'm looking for something like that. Where can i find one for free ? thanks -- Alain --

Re: [PHP] Out source files

2007-03-19 Thread Manuel Vacelet
2007/3/19, Richard Lynch <[EMAIL PROTECTED]>: On Mon, March 19, 2007 12:46 pm, Manuel Vacelet wrote: > I would like to know if there is some common patterns to "out source" > the files served by a LAMP stack. > > Technicaly speaking I would like to store my files (application data) > on another m

RE: [PHP] Can't get PHP errors to display or log consistently

2007-03-19 Thread Chris W. Parker
On Monday, March 19, 2007 11:28 AM Brad Fuller said: > Syntax errors like that will cause a startup error, which means your > code > can't be evaluated. So those 2 lines of code that turn the error > reporting > on never get executed. Oooohh it's a "startup error". D

RE: [PHP] Can't get PHP errors to display or log consistently

2007-03-19 Thread Brad Fuller
> -Original Message- > From: Chris W. Parker [mailto:[EMAIL PROTECTED] > Sent: Monday, March 19, 2007 1:57 PM > Cc: php-general@lists.php.net > Subject: RE: [PHP] Can't get PHP errors to display or log consistently > > On Friday, March 16, 2007 4:04 PM Robert Cummings >

RE: [PHP] Can't get PHP errors to display or log consistently

2007-03-19 Thread Chris W. Parker
On Friday, March 16, 2007 4:04 PM Robert Cummings said: Update: Now that I've corrected my mistake in php.ini and set the level of error reporting that I want I can see *most* errors. But shouldn't the following produce a visible error? If I comment the x I see 'hel

Re: [PHP] Out source files

2007-03-19 Thread Richard Lynch
On Mon, March 19, 2007 12:46 pm, Manuel Vacelet wrote: > I would like to know if there is some common patterns to "out source" > the files served by a LAMP stack. > > Technicaly speaking I would like to store my files (application data) > on another machine than the one that runs my PHP app. (as I

[PHP] Out source files

2007-03-19 Thread Manuel Vacelet
Hi all, I would like to know if there is some common patterns to "out source" the files served by a LAMP stack. Technicaly speaking I would like to store my files (application data) on another machine than the one that runs my PHP app. (as I already do with MySql). The best would be to use a se

[PHP] Name Capitalization

2007-03-19 Thread Leonard Burton
HI Guys, Oops, I messed this request up. It should have read: For instance, McDonald needs to remain that way even if it comes in as MCDONALD, or mcdonald. probably any wheel out there is going to be fairly lame, yours included, no offence meant as to your skills, it's just that I believe the

Re: [PHP] php search engine

2007-03-19 Thread tedd
At 4:50 PM +0100 3/19/07, Tijnema ! wrote: On 3/19/07, Ross <[EMAIL PROTECTED]> wrote: Hi, I am looking for a php search engine that provides a suggested words (soundex?) when items are misspelt, the way google does. I have used http://www.site-search-pro.com/ i n the past which is great but a

RE: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Edward Kay
> On 3/19/07, Edward Kay <[EMAIL PROTECTED]> wrote: > > > On 3/19/07, Angelo Zanetti <[EMAIL PROTECTED]> wrote: > > > > HI all. > > > > > > > > I would like some honest answers and if you have any experience with > > > > problems or no problems running PHP on a windows server. > > > > > > > > Basic

Re: [PHP] Name Capitalization

2007-03-19 Thread Jochem Maas
Leonard Burton wrote: > HI All, > > Does anyone use a library to properly capitalize last names? > > For instance, McDonald needs to remain that way even if it comes in as > MACDONALD, or macdonald. for starters you'll have a hard time getting any routine to 'correct' the missing 'a' - e

Re: [PHP] Name Capitalization

2007-03-19 Thread LeaseWeb - Poelwijk
Hello. You could use the ucfirst() function for most names: http://nl2.php.net/manual/en/function.ucfirst.php But that would make Mcdonald and not McDonalds Regards, Sander Poelwijk Leonard Burton wrote: HI All, Does anyone use a library to properly capitalize last names? For instance, M

Re: [PHP] Name Capitalization

2007-03-19 Thread Tijnema !
On 3/19/07, Leonard Burton <[EMAIL PROTECTED]> wrote: HI All, Does anyone use a library to properly capitalize last names? For instance, McDonald needs to remain that way even if it comes in as MACDONALD, or macdonald. Of course I can write it on my own but would prefer not to reinvent the whe

RE: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Brad Fuller
> Im assuming it will be running IIS. (shudder) > The site is very important and any issues will hamper the functionality > and accessibility of the site. LOL -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Name Capitalization

2007-03-19 Thread Leonard Burton
HI All, Does anyone use a library to properly capitalize last names? For instance, McDonald needs to remain that way even if it comes in as MACDONALD, or macdonald. Of course I can write it on my own but would prefer not to reinvent the wheel. Thanks, -- Leonard Burton, N9URK http://www.jiffy

Re: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Tijnema !
On 3/19/07, Edward Kay <[EMAIL PROTECTED]> wrote: > On 3/19/07, Angelo Zanetti <[EMAIL PROTECTED]> wrote: > > HI all. > > > > I would like some honest answers and if you have any experience with > > problems or no problems running PHP on a windows server. > > > > Basically we are interested to kn

RE: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Edward Kay
> On 3/19/07, Angelo Zanetti <[EMAIL PROTECTED]> wrote: > > HI all. > > > > I would like some honest answers and if you have any experience with > > problems or no problems running PHP on a windows server. > > > > Basically we are interested to know if there are any problems/security > > issues/sta

Re: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Tijnema !
On 3/19/07, Angelo Zanetti <[EMAIL PROTECTED]> wrote: HI all. I would like some honest answers and if you have any experience with problems or no problems running PHP on a windows server. Basically we are interested to know if there are any problems/security issues/stability issues/performance

Re: [PHP] php search engine

2007-03-19 Thread Tijnema !
On 3/19/07, Ross <[EMAIL PROTECTED]> wrote: Hi, I am looking for a php search engine that provides a suggested words (soundex?) when items are misspelt, the way google does. I have used http://www.site-search-pro.com/ i n the past which is great but as far as I know this feature is not included

Re: [PHP] displaying image from MySQL DB using HTML/PHP

2007-03-19 Thread Németh Zoltán
2007. 03. 14, szerda keltezéssel 19.30-kor Børge Holen ezt írta: > On Tuesday 13 March 2007 22:09, Tijnema ! wrote: > > On 3/13/07, Bruce Gilbert <[EMAIL PROTECTED]> wrote: > > > On 3/13/07, Tijnema ! <[EMAIL PROTECTED]> wrote: > > > > So you just need to set the content-type and output > > > > add

Re: [PHP] logging erros and user access to logs

2007-03-19 Thread Németh Zoltán
2007. 03. 15, csütörtök keltezéssel 16.08-kor Jason Joines ezt írta: > Richard Lynch wrote: > > On Thu, March 15, 2007 2:47 pm, Jason Joines wrote: > >> Richard Lynch wrote: > >>> On Thu, March 15, 2007 8:25 am, Jason Joines wrote: > Richard Lynch wrote: > > Get the errors OFF the web page

[PHP] Re: PHP code only works on 1 server

2007-03-19 Thread Myron Turner
PHP wrote: Dear All, I wrote a simple PHP 404 handler (index.php)(see the code below) to catch missing pages for instance. But it only works on 1 server and not the other. This is the server where it works: My Server: http://www.orbitalnets.com/support/info.php This is the server where it won't

[PHP] PHP code only works on 1 server

2007-03-19 Thread PHP
Dear All, I wrote a simple PHP 404 handler (index.php)(see the code below) to catch missing pages for instance. But it only works on 1 server and not the other. This is the server where it works: My Server: http://www.orbitalnets.com/support/info.php This is the server where it won't work (which

[PHP] php search engine

2007-03-19 Thread Ross
Hi, I am looking for a php search engine that provides a suggested words (soundex?) when items are misspelt, the way google does. I have used http://www.site-search-pro.com/ i n the past which is great but as far as I know this feature is not included. Ross -- PHP General Mailing List (htt

Re: [PHP] Is there a open_basedir and curl followlocation bypass/fix?

2007-03-19 Thread Mathijs
Jochem Maas wrote: Mathijs wrote: Hello there, I Need a bypass to have followlocation working while open_basedir is in affect. I Don't see why we can't enable/disable this protection by our selfs when needed. we can't see past the choices we don't understand though can we? Keep the protect

[PHP] was: some chinese barf

2007-03-19 Thread Jochem Maas
Tijnema ! wrote: > On 3/15/07, Andrei <[EMAIL PROTECTED]> wrote: >> LOL... >> Why you even bother to read it? > > Because i hate SPAM ! wtf - how twisted is that logic? by that logic I'd have to conclude that you regularly gouge your own eyes out with a rusty spoon - based on the assumption that

Re: [PHP] Is there a open_basedir and curl followlocation bypass/fix?

2007-03-19 Thread Jochem Maas
Mathijs wrote: > Hello there, > > I Need a bypass to have followlocation working while open_basedir is in > affect. > > I Don't see why we can't enable/disable this protection by our selfs > when needed. we can't see past the choices we don't understand though can we? > > Keep the protection e

Re: [PHP] Running PHP on a windows server-your views

2007-03-19 Thread Jochem Maas
Angelo Zanetti wrote: > HI all. > > I would like some honest answers and if you have any experience with > problems or no problems running PHP on a windows server. > > Basically we are interested to know if there are any problems/security > issues/stability issues/performance issues or any other

[PHP] Is there a open_basedir and curl followlocation bypass/fix?

2007-03-19 Thread Mathijs
Hello there, I Need a bypass to have followlocation working while open_basedir is in affect. I Don't see why we can't enable/disable this protection by our selfs when needed. Keep the protection enabled by default, and let the ppl disable it if they realy want to. Anyway, how can i bypas

[PHP] Running PHP on a windows server-your views

2007-03-19 Thread Angelo Zanetti
HI all. I would like some honest answers and if you have any experience with problems or no problems running PHP on a windows server. Basically we are interested to know if there are any problems/security issues/stability issues/performance issues or any other issues running a production sit