[PHP] Re: post redirect

2005-04-19 Thread Matthew Weier O'Phinney
. PHP does not affect that behaviour at all; it's entirely a matter of the HTTP protocol. If you want the POST variables to propogate to the redirected page, use a session. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening

[PHP] Re: Sessions - going back in browser

2005-04-19 Thread Matthew Weier O'Phinney
page that displays the results. Hitting the back button in this scenario takes you back to the first page. Chris Shifflet has a great tutorial on this; google for his name and 'page expired'. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http

Re: [PHP] How to ignore E_STRICT and E_NOTICE with error_handler callback

2005-04-18 Thread Matthew Weier O'Phinney
error_reporting to ignore both of these and still no luck, any ideas ? put this at the top of the error handling function: if($errno == E_STRICT || $errno == E_NOTICE) return; -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org

[PHP] Re: Two tables (Slightly 0T)

2005-04-16 Thread Matthew Weier O'Phinney
to select). -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL PROTECTED] | http

Re: [PHP] Are sessions unreliable?

2005-04-16 Thread Matthew Weier O'Phinney
? or this is common? -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL PROTECTED] | http

Re: [PHP] Amazon/eBay API

2005-04-15 Thread Matthew Fonda
Brian Dunning wrote: Does anyone know of any PHP classes for processing the Amazon or eBay XML feeds? There are two PEAR classes which handle both of these things, Services_Ebay and Services_Amazon. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: header()

2005-04-14 Thread Matthew Weier O'Phinney
page of the aplication. You can't do both; you can do one or the other. A Location header will always redirect, even if a content-type has been sent. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

[PHP] Re: uploading files

2005-04-13 Thread Matthew Weier O'Phinney
not foolproof; you may still get some too large files uploaded that PHP will reject after the fact. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

[PHP] Re: mod_rewrite and getting url variables

2005-04-12 Thread Matthew Weier O'Phinney
this, the page will not be processed as a CGI. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL

[PHP] Re: mod_rewrite from .htaccess

2005-04-12 Thread Matthew Weier O'Phinney
that you know work on another machine, for instance, that would be the next step to try. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

Re: [PHP] mod_rewrite and getting url variables

2005-04-12 Thread Matthew Weier O'Phinney
) work would look something like this: RewriteRule page/(.*) /page.php?id=$1 [L,PT] -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http

[PHP] Re: Smarty and PEAR DB

2005-04-11 Thread Matthew Weier O'Phinney
of total results for the criteria, and one that pulls the set with a LIMIT statement. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http

Re: [PHP] Re: Smarty and PEAR DB

2005-04-11 Thread Matthew Weier O'Phinney
* D. Wokan [EMAIL PROTECTED]: Matthew Weier O'Phinney wrote: * Reynier Perez Mira [EMAIL PROTECTED]: I'm using PEAR DB and Smarty. The case is that I have to pass a value = from a query result to a Smarty var. I try to paginate results. See the = code below

Re: [PHP] Variable Passing

2005-04-09 Thread Matthew Weier O'Phinney
is that done? And is it called something specific so I know how to refer to it in the future? You can do that with $_SERVER[PATH_INFO]. If your script is /something, this variable will be set to /321 -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http

Re: [PHP] Re: Why is it possible to assign data to _not_declared_ vars in a class (PHP 5.0.3)?

2005-04-09 Thread Matthew Weier O'Phinney
* Hanez [EMAIL PROTECTED]: On Friday 08 April 2005 20:22, Matthew Weier O'Phinney wrote: * Johannes Findeisen [EMAIL PROTECTED]: If i understand right, all variables should be declared in PHP5. So why is it possible to add a membervariable called c to the object without making

Re: [PHP] Variable Passing

2005-04-09 Thread Matthew Weier O'Phinney
without using something like id=321. I have seen sites that have something like http://www.website.com/something/321 and the variable is passed how exactly is that done? And is it called something specific so I know how to refer to it in the future? -- Matthew Weier O'Phinney

RE: [PHP] XML Select

2005-04-08 Thread Robinson, Matthew
There's a few xml - array libraries out there which is probably the easier way to examine xml stuff. I use http://keithdevens.com/software/phpxml but there are many others. M -Original Message- From: Stefan [mailto:[EMAIL PROTECTED] Sent: 08 April 2005 13:26 To:

[PHP] Re: Why is it possible to assign data to _not_declared_ vars in a class (PHP 5.0.3)?

2005-04-08 Thread Matthew Weier O'Phinney
in PHP5. What changed in PHP5 is visibility. By default, unless declared otherwise, a class attribute is publicly visible -- the same behaviour seen in PHP4. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association

[PHP] Re: Session Info Storage: Session File or MySQL DB?

2005-04-08 Thread Matthew Weier O'Phinney
) * Are you using a shared host? If so, it's possible for session collision and snooping to happen when using file based sessions. Database storage might be a good idea in this situation. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org

Re: [PHP] IRC from PHP - help

2005-04-01 Thread Matthew Fonda
You might want to check out PEAR::Net_SmartIRC http://pear.php.net/package/Net_SmartIRC hello i'm a newcomer to this list, fairly experienced PHP programmer but coding mostly for personal web sites or hobbies. I also run an irc chat network and am curious as to if I can integrate php into it

Re: [PHP] php user groups - searching for php developers for a project...

2005-04-01 Thread Matthew Fonda
Im not sure if you have checked it, but there is a calender on www.php.net with a list of a lot of user group events, perhaps you could find one there. hi... we're trying to find php developers/partners for a project, and we're wondering if there are php user groups in the cali/bay area (san

Re: [PHP] PHP 5 Status

2005-04-01 Thread Matthew Fonda
Yes, PHP5 is ready for production environments. It is stable, and has been stable for almost an entire year. Is PHP 5 ready for production environments? Is it concidered stable, or is it just a matter of going a while with no new bugs discovered to get to stable.. Colin -- PHP General Mailing

[PHP] Re: Help!

2005-03-26 Thread Matthew Fonda
Chances are you are not connected to the database, or you have a MySQL error somewhere along the lines. Try using mysql_error() to help find whats going on. [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I get this error: Warning: mysql_fetch_row(): supplied argument is not a valid

[PHP] Re: modules

2005-03-26 Thread Matthew Fonda
I would say the best way to go about doing this would be to look at examples of the code in sites you find that do this. Observe how they do it, and base your code off of it. Cima [EMAIL PROTECTED] wrote: hi, im building a web site and i have seen some sites built using modules to facilitate

Re: [PHP] mysql_fetch_row() --Still not working

2005-03-26 Thread Matthew Fonda
Any idea how I could fix it? Yes, use mysql_error() to see what the error is, once you know what MySQL error you are getting, it will be easy to fix. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Netobjects Fusion problem

2005-03-26 Thread Matthew Fonda
version. This is a note on the ibase_fetch_assoc() manual page saying: If your php is older than version 4.3.0, you can use the following: $arr_record = get_object_vars(ibase_fetch_object($sql_result)); which is the same as: $arr_record = ibase_fetch_assoc($sql_result); -- Regards, Matthew

Re: [PHP] reg expressions

2005-03-25 Thread Matthew Fonda
would be GREATLY appreciated. It would also be fine to just do a loop that checks each line. Since I guess that would be quicker. If the line starts with a #, then ignore it, otherwise, do some other stuff. Thanks Steve -- Regards, Matthew Fonda http://mfonda.info -- PHP General

Re: [PHP] following php development

2005-03-25 Thread Matthew Fonda
but it seems that it has not been updated in a while. Besides the php-devel is there any other source of information about php's development ? -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: html image

2005-03-25 Thread Matthew Fonda
. can such a thing be done by php? if not, maybe by some other language? -- Regards, Matthew Fonda http://www.mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Ending PHP

2005-03-25 Thread Matthew Fonda
){ This } Do not continue to the next piece of code, if false, continue to the next piece of code. Thanks for any help. -- Steve Marquez [EMAIL PROTECTED] -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] shell script - disable log output

2005-03-09 Thread Matthew Fonda
? -thanks, Eli -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Comments and performance

2005-03-05 Thread Matthew Fonda
Smith Ninja Labs http://www.ninjalabs.co.uk/ -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] pulling content from a URL

2005-03-04 Thread Matthew Fonda
, etc. -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Data Encryption

2005-03-02 Thread Matthew Fonda
do I decipher it to be used later on? Also, not to sound helpless, but I'm pretty new to PHP and I don't quite have a handle on the jargon, so if it could be explained as simply as possible that would be helpful. Thanks so much! Cat -- Regards, Matthew Fonda http://mfonda.info -- PHP

Re: [PHP] xml-rpc with php5

2005-03-01 Thread Matthew Fonda
simplicity and less overhead. Alex You could try the new xmlrpci PHP extension http://pecl.php.net/package/xmlrpci If not, you can use PEAR::XML_RPC http://pear.php.net/package/XML_RPC -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Wierd PHP Problem

2005-02-23 Thread Matthew Fonda
']; -- Regards, Matthew Fonda http://mfonda.info -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: How to open a URL directly ?

2005-02-18 Thread Matthew Weier O'Phinney
this, though. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL PROTECTED] | http

Re: [PHP] Re: isset

2005-02-16 Thread Matthew Weier O'Phinney
. Enable to have PHP suggest changes to your code which will ensure the best interoperability and forward compatibility of your code. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

[PHP] Re: retrieve single field from database without while loop

2005-02-16 Thread Matthew Weier O'Phinney
a similar method. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL PROTECTED] | http

[PHP] Re: php error

2005-02-16 Thread Matthew Weier O'Phinney
. If the script is in the same directory as your form: form action=script.php method=post/form or, with a path absolute to the web document root: form action=/path/to/script.php method=post/form or, with an absolute URL: form action=http://example.tld/path/to/script.php; method=post/form -- Matthew

[PHP] Re: PHP 5 with Apache 2.0

2005-02-15 Thread Matthew Weier O'Phinney
2.0? As far as I know, the same issues are present for PHP4 as PHP5 when using apache2. -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

Re: [PHP] PHP book recommendations

2005-02-14 Thread Matthew Weier O'Phinney
an introductory PHP book I could recommend -- I'd look for a good book on programming and/or programming practices for the web, and then figure out how to translate that into PHP (using php.net as a reference). -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http

[PHP] Re: Weighted Lists

2005-02-09 Thread Matthew Weier O'Phinney
/searching.html -- Matthew Weier O'Phinney | WEBSITES: Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org mailto:[EMAIL PROTECTED] | http

Re: [PHP] Foreach problem.

2005-02-09 Thread Matthew Fonda
an idea why? Thank you very much Mirco Blitz -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Development IDE's/Editors

2005-02-09 Thread Matthew Fonda
PHP development. (On Windows) I know that you can use good ol Visual Notepad, but i was wondering if there was anything better out there. Thanks. -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Parsing whois lookup information

2005-02-09 Thread Matthew Fonda
all copies and attachments.Any disclosure, copying, distribution, or reliance upon the contents of this e-mail, by any other than the intended recipients, is strictly prohibited. -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

[PHP] Re: [users@httpd] Favorite Linux Distribution

2005-02-07 Thread Matthew Weier O'Phinney
-- Matthew Weier O'Phinney [EMAIL PROTECTED] http://weierophinney.net/matthew -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: What's wrong with this rewrite rule?

2005-02-02 Thread Matthew Weier O'Phinney
... -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List (http

RE: [PHP] Some questions about if and isset.

2005-01-31 Thread Robinson, Matthew
Can we see some sample data? An example of what $variable and $constant are would help. A quick glance at the code I'd have: if (isset($variable) { if ($variable $contstant) { stuff } elseif ($variable $constant) { more

Re: [PHP] question on getting URL

2005-01-30 Thread Matthew Fonda
show it in the address bar. All it shows is; http://mysite.com What I would like to do is to get the information from the address bar to know when I am on the main page. -- -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Get a PAGE

2005-01-28 Thread Matthew Fonda
the details on it. Im going to try PEAR HTTP_Download Is there another application or syntax on php that can do this? -- Louie Miranda http://www.axishift.com -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Class declaration, constants and array

2005-01-28 Thread Matthew Fonda
to this. var $test=$test2;// also fails So since I can not use dynamic var assignment within the class declaration, what are some of the easy solutions to this ? without making anything global to the script ? Thanks -- Regards, Matthew Fonda -- PHP General Mailing List (http

[PHP] Re: PHP5 stable enough for webapps ?

2005-01-28 Thread Matthew Weier O'Phinney
issues. The only issue I have seen has been with overriding error handling -- a few bugs we had created some cascading errors that ended up segfaulting our systems, but those were probably errors of ours, not of PHP's. (That's why they're _development_ servers, right?) I'd say, go for it. -- Matthew

[PHP] Re: Best way to execute actions within a class

2005-01-28 Thread Matthew Weier O'Phinney
world would achieve this (Cgiapp). You might check out the code and the docs to see if you can glean some ideas for your projects. /self_promotion_mode (Man, I hate doing that... buy I *am* proud of that bit o' code, even if it isn't completely original.) -- Matthew Weier O'Phinney

[PHP] Re: PHP Cache

2005-01-25 Thread Matthew Weier O'Phinney
. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List (http

Re: [PHP] Zend Performance Suite 3.6 and PHP5

2005-01-25 Thread Matthew Runo
I'm almost certain that PHP 5 was supported starting with Zend Performance Suite 4.0. You can log into your company's Zend account to download the software that you have access to. --Matthew Runo Founder, Quabbo Internet Services PHP Hosting Solutions, featuring the Zend Performance Suite http

Re: [PHP] Extending a Class

2005-01-24 Thread Matthew Weier O'Phinney
* Jason Barnett [EMAIL PROTECTED]: Matthew Weier O'Phinney wrote: * Phillip S. Baker [EMAIL PROTECTED]: ... The object *instance* only gets to access the overridden method (assuming it's an instance of the child class): $instance-someMethod(); This is 100% correct, but just

[PHP] Re: wiki as php object?

2005-01-22 Thread Matthew Weier O'Phinney
. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List (http://www.php.net

[PHP] Re: Why is access and visibility mixed up in PHP?

2005-01-22 Thread Matthew Weier O'Phinney
usage. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List (http

Re: [PHP] Loading all clases always

2005-01-22 Thread Matthew Weier O'Phinney
will get cached (I guess PHP uses filesize/date/time) so the overhead would not be that great. Also at any given time they will all probably be needed by one of the visitors. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org

[PHP] Re: Why no type hints for built-in types?

2005-01-22 Thread Matthew Weier O'Phinney
rather half-baked, only covering user-defined types. I can definitely see a use for this -- but, again, PHP has been designed with loose typing as a *feature*. While type hinting may be a nice additional feature, I have my doubts as to the necessity or overhead it would incur. -- Matthew Weier

[PHP] Re: Procedural to OOP

2005-01-22 Thread Matthew Weier O'Phinney
to a templating system was a huge productivity boost, as when you work in a template, you use HTML; when you work in a script/class, you use PHP). -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

Re: [PHP] Extending a Class

2005-01-22 Thread Matthew Weier O'Phinney
., it wants to access its own method, not the parent's), it uses: $this-someMethod(); The object *instance* only gets to access the overridden method (assuming it's an instance of the child class): $instance-someMethod(); -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED

Re: [PHP] Extending a Class

2005-01-21 Thread Matthew Weier O'Phinney
. -- Blessed Be Phillip -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening

Re: [PHP] Classes and parents.

2005-01-21 Thread Matthew Fonda
extends a { function say() { echo B; } function run() { parent::run(); } } $obj = new b; $obj-run(); --- I will get B, but how i may get A? -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Writing static file from dynamic PHP page

2005-01-18 Thread Matthew Weier O'Phinney
toyed a little with output buffering to no avail. Is there an easy way to do this? -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

[PHP] Re: which is best php editor?

2005-01-17 Thread Matthew Weier O'Phinney
, though, this sort of question is asking for a holy war. Look through the archives, google for it... you'll find lots of opinions. Me, I use vim. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening

[PHP] Re: Writing static file from dynamic PHP page

2005-01-17 Thread Matthew Weier O'Phinney
what you're trying to do. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General

[PHP] Re: PHP application for knowledge management?

2005-01-17 Thread Matthew Weier O'Phinney
in the shortest time possible. I've always found WikiWikiWebs ideal for this very type of thing -- its exactly what they were created for. phpwiki is quite nice, I've heard good things about yawiki, and there's several other PHP wiki packages out there. -- Matthew Weier O'Phinney | mailto

[PHP] Re: Search Engine Friendly URLs

2005-01-15 Thread Matthew Weier O'Phinney
it on the server? You can place .htacces files in any directory -- assuming you're using Apache as your webserver AND assuming Apache is configured to allow .htaccess files. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org

[PHP] Re: 404 custom handler on a cgi-wrap PHP - No input specified error

2005-01-14 Thread Matthew Weier O'Phinney
the source? -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List

RE: [PHP] regex help

2005-01-14 Thread Robinson, Matthew
Do you have the example regex so far? I'd suggest maybe b[^r] might just do what you want -Original Message- From: Jason Morehouse [mailto:[EMAIL PROTECTED] Sent: 13 January 2005 21:07 To: php-general@lists.php.net Subject: [PHP] regex help Hello, I normally can take a bit of regex

RE: [PHP] unable to execute external program

2005-01-13 Thread Robinson, Matthew
I think you've answered your own question. Check the permissions on the file. Can it be executed by the other user? Is it in the path? What error do you see in the log? ls -l chmod might just be your friends ;-) -Original Message- From: Sagar C Nannapaneni [mailto:[EMAIL PROTECTED]

Re: [PHP] delete part of array

2005-01-13 Thread Matthew Fonda
] = grape [1] = apple [2] = [3] = orange [4] = [5] = cherry ) to: [name] = Array ( [0] = grape [1] = apple [2] = orange [3] = cherry ) -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net

[PHP] Re: php style guides

2005-01-12 Thread Matthew Weier O'Phinney
personal coding preference; I've heard very good arguments for other styles and for not using templates. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863

[PHP] Re: Offline working

2005-01-12 Thread Matthew Weier O'Phinney
to connect, I can't. Just keep hitting the download button every so often, and you should get a full list at some point. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

[PHP] Re: PHP Unit Tests - which framework to use?

2005-01-07 Thread Matthew Weier O'Phinney
trying to figure out from the docs how to use PHPUnit -- and only managed a portion of what I accomplished with SimpleTest in that hour. 'Course, the PHPUnit docs may have been improved since I last tried it -- YMMV. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster

Re: Re[3]: [PHP] How to argue with ASP people...

2005-01-06 Thread Matthew Sims
, we'll include documentation that leaves out most of what you're looking for. Order yours today! -- --Matthew Sims --http://killermookie.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] migrating to PHP 5 + Apache 2 from PHP 4.3.8 + Apache 1.3.33.

2005-01-05 Thread Matthew Weier O'Phinney
is going to give you the answer, probably not. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org

[PHP] Re: apache 1 vs 2 w/php

2005-01-05 Thread Matthew Weier O'Phinney
. Your best bet: stick with apache1 if using PHP heavily. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http

[PHP] Re: PHP cacher?

2005-01-05 Thread Matthew Weier O'Phinney
solution. It must be free (no charge)... http://eaccelerator.sourceforge.net/Home PS: How come that this isn't included in PHP itself, just as there's mod_deflate for Apache 2? Probably because it's overkill for most sites. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED

[PHP] Re: PHP cacher?

2005-01-05 Thread Matthew Weier O'Phinney
* Kimmo Alm [EMAIL PROTECTED]: On 5 Jan 2005 17:28:42 -, Matthew Weier O'Phinney [EMAIL PROTECTED] wrote: * Kimmo Alm [EMAIL PROTECTED]: I've been looking for some PHP cache software for a while now, and I just can't seem to find one suitable for my setup. I run PHP 5.x

[PHP] Re: PHP5 Namespace ?

2005-01-04 Thread Matthew Weier O'Phinney
-- if then. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List

Re: [PHP] migrating to PHP 5 + Apache 2 from PHP 4.3.8 + Apache 1.3.33.

2005-01-03 Thread Matthew Weier O'Phinney
-- and it might make more sense to run multiple servers -- some with Apache1 and PHP5 and others running Apache2 and whatever other modules you need. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association

Re: [PHP] migrating to PHP 5 + Apache 2 from PHP 4.3.8 + Apache 1.3.33.

2005-01-03 Thread Matthew Weier O'Phinney
writing the language) who bother to mention it report using. (Rasmus Lerdorf just said this is what he uses on this very list.) -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

[PHP] Re: Persistent PHP web application?

2005-01-03 Thread Matthew Weier O'Phinney
://pear.php.net/packages/soap). -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General

Re: [PHP] function problem

2005-01-03 Thread Matthew Weier O'Phinney
-- for example, when you don't want duplicate records created in the database. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http

[PHP] Re: Date-development stalled?

2005-01-02 Thread Matthew Weier O'Phinney
in touch with the developers... (It's a matter of manually cloning function arguments of type object). What to do? Subscribe to the pear-dev list, find out if any work is being done on it, and, if not, volunteer to take over maintenance. -- Matthew Weier O'Phinney | mailto:[EMAIL

[PHP] Re: Apache 2.0.52 / PHP 4.3.10 Integration Question...

2004-12-31 Thread Matthew Weier O'Phinney
); // Trim off first slash $args = expode('/', $path_info); $variable = $args[0]; -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

Re: [PHP] PEAR DB vs ADODB

2004-12-29 Thread Matthew Weier O'Phinney
if those libraries do not follow the same guidelines. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http

[PHP] Re: build list of available functions and classes

2004-12-29 Thread Matthew Weier O'Phinney
PHP functions for use with VIM; this may also be useful (google for 'rasmus vim dictionary'). -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156

Re: [PHP] Re: Align pic

2004-12-29 Thread Matthew Fonda
/tr /table this should work, but it's not. now the image is centered horizontally, but I need it vertically, too. what to do? Thank you, Lab. -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] gallery (4 in a row) // carefull newbie

2004-12-28 Thread Matthew Weier O'Phinney
to the style, but if your captions are of variable length, this could cause some strange display issues on longer captions. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http

[PHP] Re: Recommend a free shopping cart app?

2004-12-27 Thread Matthew Weier O'Phinney
with an existing site, but both are highly configurable. -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org

Re: [PHP] PHP Wiki recomendations

2004-12-25 Thread Matthew Fonda
://gdconsultants.com/ http://destiney.com/ -- Regards, Matthew Fonda -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP Wiki recomendations

2004-12-25 Thread Matthew Weier O'Phinney
discounted... -- Matthew Weier O'Phinney | mailto:[EMAIL PROTECTED] Webmaster and IT Specialist | http://www.garden.org National Gardening Association| http://www.kidsgardening.com 802-863-5251 x156 | http://nationalgardenmonth.org -- PHP General Mailing List (http

Re: [PHP] php + html (frame)

2004-12-24 Thread Matthew Sims
something done with the browser, use Javascript. -- --Matthew Sims --http://killermookie.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Merry Christmas ;o]

2004-12-24 Thread Matthew Sims
Merry Christmas and happy new year for all that is part of php community, god bless us. Peace! How is this PHP? Please consult the Christmas mailing list. JUST KIDDING! Happy holidays. :) -- --Matthew Sims --http://killermookie.org -- PHP General Mailing List (http://www.php.net

RE: [PHP] Using encrypted passwords

2004-12-23 Thread Robinson, Matthew
And the good Lord saw that clear was bad and gave us ssh... If you care that much build an ssh tunnel to the db server and talk over that. -Original Message- From: Jason Wong [mailto:[EMAIL PROTECTED] Sent: 20 December 2004 17:29 To: php-general@lists.php.net Subject: Re: [PHP] Using

RE: [PHP] File Locking during *other* file operations

2004-12-23 Thread Robinson, Matthew
fail for a reason and you should find that reason before you unlock and potentially break something. M -Original Message- From: Richard Lynch [mailto:[EMAIL PROTECTED] Sent: 20 December 2004 18:26 To: Robinson, Matthew Cc: Michael Sims; php-general Subject: RE: [PHP] File Locking during

<    1   2   3   4   5   6   7   8   9   10   >