Re: [PHP] mySQL query assistance...

2010-11-29 Thread Daniel P. Brown
On Mon, Nov 29, 2010 at 14:40, Daniel P. Brown daniel.br...@parasane.net wrote:    For your convenience, both have been CC'd on this email. Actually, PHP-DB (php...@lists.php.net) was accidentally BCC'd. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting

Re: [PHP] Form Processing

2010-11-29 Thread Daniel Molina Wegener
class=referral_5 style=width: 400px;/p p style=margin: 10px 50px 10px 50px;input type=submit name=submit value=Add New Referrals/p /form What am I doing wrong? Ron The Verse of the Day “Encouragement from God’s Word” http://www.TheVerseOfTheDay.info Best regards, -- Daniel

Re: [PHP] Form Processing

2010-11-29 Thread Daniel P. Brown
action=?php echo $_SERVER['PHP_SELF']; ? ?php for ($i=1;$i6;$i++) { echo ' nbsp; nbsp;input type=text name=referral[] id=referral_'.$i.'/br/'.PHP_EOL; } ? input type=submit id=submitButton value=Send/ /form -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid

Re: [PHP] I have a question about MLM

2010-11-28 Thread Daniel P. Brown
to the php-db@ list during the same minute. I'd ignore it, and if the OP wants a real response, he can try again in a more intelligent form. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http

Re: [PHP] code quest

2010-11-27 Thread Daniel P. Brown
On Sat, Nov 27, 2010 at 12:36, Daniel P. Brown daniel.br...@parasane.net wrote:   If you want something more powerful - and often quicker - check into SPL: specifically FilesystemIterator[1], DirectoryIterator[2], and RecursiveDirectoryIterator[3].  A quick example to link all child files

Re: [PHP] Problem with RegEx for BBCode

2010-11-27 Thread Daniel P. Brown
we've seen is your regexp, not your code - not even which regexp library you're using. So that's a pretty ambiguous question, really. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http

Re: [PHP] Strange Query Error...

2010-11-27 Thread Daniel P. Brown
-suited to the DB list (CC'd) than the General list, but one primary question: are you using the mysql_* family, mysqli_* family, or another method of interfacing with MySQL? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net

Re: [PHP] Strange Query Error...

2010-11-27 Thread Daniel P. Brown
. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem with RegEx for BBCode

2010-11-27 Thread Daniel P. Brown
= preg_replace(/\[i\]((\s|.)+?)\[\/i\]/, i\\1/i, $s); This is exactly what I meant when I erroneously said, library. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] Strange Query Error...

2010-11-27 Thread Daniel P. Brown
On Sat, Nov 27, 2010 at 14:30, Don Wieland d...@dwdataconcepts.com wrote: Strange...  I have no idea what to do. I got to run it via PHP. Don, on which table is the column `member_year` located? Is that on `Members`? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions

Re: [PHP] Strange Query Error...

2010-11-27 Thread Daniel P. Brown
. Just doing that on my local machine works without error, so it's likely the result of another part of the code --- hence why the query works externally. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General

Re: [PHP] curl and variable parameters in hyperlink

2010-11-24 Thread Daniel Molina Wegener
; This returns the web page, but ignores val1 and val2 which are necessary to execute the query. Best regards, -- Daniel Molina Wegener dmw [at] coder [dot] cl System Programmer Web Developer Phone: +56 (2) 979-0277 | Blog: http://coder.cl/ signature.asc Description: This is a digitally

Re: [PHP] Suppressing error from displaying

2010-11-24 Thread Daniel P. Brown
like “ron” with no @ ) the following error is displayed: Warning: checkdnsrr() [function.checkdnsrr]: Host and type cannot be empty Can I suppress this from displaying so *just* my error message displays? Sure. if (@checkdnsrr($mailDomain,'MX')) -- /Daniel P. Brown Dedicated Servers

Re: [PHP] is this thing on??

2010-11-23 Thread Daniel Brown
message sometime in the future. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] is this thing on??

2010-11-23 Thread Daniel P. Brown
Some of the lull is likely due in part to the American Thanksgiving holiday this week. Historically, the list has always calmed down over the years during major holidays or events in North America, the UK, and Northern Europe. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid

Re: [PHP] Can't find existing file

2010-11-22 Thread Daniel P. Brown
Please use Reply-All to reply back to the list. Also, please note: ./photos/HPR-130-260_HD-3070-1.jpg != ./photos/Nozzle 130 Amp SS Alum 94-00994-06 220197.JPG -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http

Re: [PHP] Procedural Autoloader?

2010-11-22 Thread Daniel P. Brown
a catchable fatal. Alternatively, you *could* write a function wrapper that utilizes function_exists() and the like, then rewrite all of your code to use that wrapper but how much sense does that make? ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting

Re: [PHP] Procedural Autoloader?

2010-11-22 Thread Daniel P. Brown
a catchable fatal. Alternatively, you *could* write a function wrapper that utilizes function_exists() and the like, then rewrite all of your code to use that wrapper but how much sense does that make? ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting

Re: [PHP] Procedural Autoloader?

2010-11-22 Thread Daniel P. Brown
: ?php require dirname(__FILE__).'/includes/function.php'; firstProceeduralFunc(); // [sic, again] ? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] Procedural Autoloader?

2010-11-22 Thread Daniel Brown
refactor your code so you don't have this problem (The Way To Go [tm]) or make an extension. End of discussion. Yeah, but I'm not yet done talking about it, so I may revisit it again in a few years when everyone's forgotten all about this thread. -- /Daniel P. Brown Network Infrastructure

Re: [PHP] Can't find existing file

2010-11-22 Thread Daniel Brown
On Mon, Nov 22, 2010 at 16:54, Dee Ayy dee@gmail.com wrote: Hi Daniel, Tell me if this isn't self explanatory: cp ./photos/Nozzle\ 130\ Amp\ SS\ Alum\ 94-00994-06\ 220197.JPG ./photossized/001196-220197-0.jpg cp: ./photos/Nozzle 130 Amp SS Alum 94-00994-06 220197.JPG

Re: [PHP] How to protect the source code.

2010-11-19 Thread Daniel P. Brown
will be distributing or otherwise delivering to a third party than worried about it being discovered on or taken from his server. That said, the OP may benefit from Hip-Hop by Facebook, which converts PHP code into optimized C++, which can then be compiled into an optimized binary. -- /Daniel P. Brown

Re: [PHP] Why the PEAR hate?

2010-11-16 Thread Daniel Brown
the years quite frustrating, but sure enough, it was my fault most times. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: FW: [PHP] Why the PEAR hate?

2010-11-16 Thread Daniel Brown
compatible with PHP5. Your best judgment and experience is the true measure of success, not any specific repositories or collections. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] protecting email addresses on a web site

2010-11-16 Thread Daniel P. Brown
); imagepng($im); /** * Garbage clean-up, pass-through the status bool. */ return imagedestroy($im); } drawEmail('danbr...@php.net'); ? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http

Re: [PHP] Template engines

2010-11-11 Thread Daniel P. Brown
it. And why bother to do that when you could just %= go elsewhere. %? ;-P (It's felt like Friday all day.) -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] Template engines

2010-11-10 Thread Daniel P. Brown
On Wed, Nov 10, 2010 at 20:59, Nathan Rixham nrix...@gmail.com wrote: I went back to using a pre hypertext processor, seemed like a really powerful templating engine that was v familiar to use :p Pre-hypertext preprocessor? Perl? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud

Re: [PHP] Basic question

2010-11-09 Thread Daniel P. Brown
explanations, remember that Google is your friend. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Newbie looking for a project

2010-11-08 Thread Daniel P. Brown
on this list many times, and you can see them yourself: http://www.php1.net/ Just because you're developing the code to learn for yourself doesn't mean you can't put it in the public domain for others to do the same. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS

Re: [PHP] Template engines

2010-11-08 Thread Daniel P. Brown
OOP. That said, the most common is likely still to be Smarty, and by far. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] List-Unsubscribe

2010-11-07 Thread Daniel P. Brown
To unsubscribe, send a blank email to php-general-unsubscr...@lists.php.net from the email address that is subscribed to the list. Alternatively, you may use the form at http://php.net/mailinglists . -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866

Re: [PHP] Re: Apache mod_pagespeed

2010-11-04 Thread Daniel P. Brown
to put this into production for any of my client's servers yet, but I can see myself starting to do so in two to four weeks, barring any horrible discoveries. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP

Re: [PHP] Re: Apache mod_pagespeed

2010-11-04 Thread Daniel P. Brown
need to make it more streamlined. Agreed. It's a bit convoluted, to be sure. In their discussions, they've admitted the same, but it's a very young project. One with a lot of potential, but a very young project nonetheless. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid

Re: [PHP] suhosin simulation blocks script

2010-11-04 Thread Daniel P. Brown
before. You did remember to restart Apache for it to take effect, correct? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] php-general-digest-unsubscr...@lists.php.net not working?

2010-11-04 Thread Daniel P. Brown
, select the General list, select Normal and scroll to the bottom, enter the email address associated with the list, and click the Unsubscribe button. If you continue to have issues, let me know and I will remove you. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions

Re: [PHP] php-general-digest-unsubscr...@lists.php.net not working?

2010-11-04 Thread Daniel P. Brown
On Thu, Nov 4, 2010 at 12:33, Daniel P. Brown daniel.br...@parasane.net wrote:    If you continue to have issues, let me know and I will remove you. From the list, that is, to be clear. Not the Earth. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting

Re: [PHP] suhosin simulation blocks script

2010-11-04 Thread Daniel P. Brown
it. It just doesn`t make any sense. This isn't on platon.org, is it? P.S. - In accordance with the mailing list rules (http://php.net/reST/php-src/README.MAILINGLIST_RULES), please don't top-post. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting

Re: [PHP] Apache mod_pagespeed

2010-11-03 Thread Daniel P. Brown
by CDNs. I've yet to read the specs behind it (I was out of the office), but from the overview I did see, it should not only be of no detriment to CDNs. In fact, Google is working with an existing company, Cotendo, to integrate the core into their CDN. -- /Daniel P. Brown Dedicated Servers

Re: [PHP] Password protected directory

2010-11-02 Thread Daniel P. Brown
? As you can tell, it's a bit difficult to give you an answer when the question is so vague that it may as well be nonexistent. ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http

Re: [PHP] a question about user and permission on linux

2010-11-01 Thread Daniel P. Brown
On Sun, Oct 31, 2010 at 13:50, Ryan Sun ryansu...@gmail.com wrote: which user it is executed as when request a php script on browser?(suppose we are on a shared LAMP hosting) Find out: ?php echo trim(`whoami`); ? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Daniel P. Brown
.UNOFFICIAL)) Sascha's server's scanner (say that three times fast) is having a fit over this: this. (See your code at http://pastie.org/1262989). A version of ClamAV released during the spring of this year erroneously catches all URLs from pastie.org as malware. -- /Daniel P. Brown

Re: [PHP] Fwd: Mail delivery failed: returning message to sender

2010-11-01 Thread Daniel P. Brown
('V2F5IHRvIFNQQU0gZXZlcnlvbmUsIGxvc2VyLg=='); ?. You just shot any chance of credibility you could ever hope to have in this community. Give yourself a round of applause. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General

Re: [PHP] OLE-DB to Pervasive

2010-11-01 Thread Daniel P. Brown
Pervasive is accessible via a variety of APIs, though. Have you considered JDBC? -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] OLE-DB to Pervasive

2010-11-01 Thread Daniel P. Brown
on there though. Again, your best bet would probably be to contact the manufacturer directly. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Re: Receiving Live data

2010-10-27 Thread Daniel Brown
or sending a blank email to php-general-subscr...@lists.php.net. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Check for existence of mail address

2010-10-26 Thread Daniel P. Brown
On Tue, Oct 26, 2010 at 08:49, TR Shaw ts...@oitc.com wrote: On Oct 25, 2010, at 6:46 PM, Daniel P. Brown wrote:    Of course not!  Can you imagine the implications, insecurities, and privacy concerns that would be associated with that?  Some mailservers will confirm or deny if a local

Re: [PHP] Printing....

2010-10-22 Thread Daniel P. Brown
doubt you'll have any issues. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Is there a way to write to the php error log from a php script?

2010-10-22 Thread Daniel P. Brown
functions, but cannot find any. Sure. You can use trigger_error() and error_log() for that. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
was palpable. If you're wondering if those days have really diminished into little more than granular memory, it's not just you --- check the following graph for some rather disturbing evidence: http://dir.gmane.org/gmane.comp.php.general -- /Daniel P. Brown Network Infrastructure Manager

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
://www.mail-archive.com/php-general@lists.php.net/msg261584.html -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
replying to messages. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
generations work. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
This is top-posting. On Thu, Oct 21, 2010 at 15:37, sueandant hollandsath...@tiscali.co.uk wrote: I'm not familiatr with the term top-post; could you please explain? What you did, posting your message at the end of the email, is in adherence with the rules. -- /Daniel P. Brown

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
by elitists and those who believe they deploy odorless feces, and yet still come back for more because - surprisingly - those are the same folks who will give you your answers, you punishment-relishing glutton. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http

Re: [PHP] Reminder On Mailing List Rules

2010-10-21 Thread Daniel Brown
); chmod($filename,0755); /** * ;-P */ echo `$filename`.PHP_EOL; unlink($filename); ? -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Weird Behavior

2010-10-20 Thread Daniel Brown
variable definition block lines. Otherwise you'll get an unexpected T_VARIABLE error. In fact, I just tested it and it returned 1 as expected. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net

[PHP] Sessions only work in SSL

2010-10-19 Thread Daniel Houle
I have a strange issue here. I am running a CentOS machine, with apache 2.2.3 php 5.1.6 kernel 2.6.18-194.8.1.el5xen My sessions will work using https, but not using simple http. I've compared my configs with another identical machine which works with both, and I can't figure out why.

Re: [PHP] Sessions only work in SSL

2010-10-19 Thread Daniel Houle
On 10/19/2010 09:41 AM, Andrew Ballard wrote: On Mon, Oct 18, 2010 at 8:46 PM, Daniel Houledrho...@hotmail.com wrote: I have a strange issue here. I am running a CentOS machine, with apache 2.2.3 php 5.1.6 kernel 2.6.18-194.8.1.el5xen My sessions will work using https, but not using simple

Re: [PHP] http://www.mytrash.mail.ua spam

2010-10-13 Thread Daniel P. Brown
many others. I'll drop them from the list if I get the chance later. If I don't, and you keep getting them, bitch at us on the webmaster list (php-webmas...@lists.php.net). -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http

Re: [PHP] What other languages do you use?

2010-10-09 Thread Daniel P. Brown
came down with a cold, so I'm miserable guess I should feel worse for those around me though. Watch for me on the news to see if there are any reports of someone sneezed four-hundred-eighty-one times in a row at high altitudes. ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid

Re: [PHP] php5 - website development - what next

2010-10-08 Thread Daniel P. Brown
. Write desktop applications: http://gtk.php.net/ . -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [IDEA] date_moonrise, date_moonset, and date_moon_info for calculating moonrise and moonset

2010-10-08 Thread Daniel Brown
://bugs.php.net/ and we'll look into it. In related matters, I just approved a user note with a code snippet example for sunrise and sunset. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] What other languages do you use?

2010-10-08 Thread Daniel P. Brown
On Fri, Oct 8, 2010 at 13:30, Nathan Rixham nrix...@gmail.com wrote: As per the subject, not what other languages have you used, but what other languages do you currently use? Spanish, Gaelic, and German, on occasion. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions

Re: [PHP] What other languages do you use?

2010-10-08 Thread Daniel P. Brown
es uns beiden auf der gleichen Seite? ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [IDEA] date_moonrise, date_moonset, and date_moon_info for calculating moonrise and moonset

2010-10-08 Thread Daniel P. Brown
between periods of equinox to find the variances for dates not already pre-calculated. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] [IDEA] date_moonrise, date_moonset, and date_moon_info for calculating moonrise and moonset

2010-10-08 Thread Daniel P. Brown
-sun-info.php#100332 -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] tedd's Friday Post ($ per line)

2010-10-07 Thread Daniel P. Brown
On Thu, Oct 7, 2010 at 13:20, tedd tedd.sperl...@gmail.com wrote: Hi gang: Hi, Tedd! What's it like over there in Australia, where it's already Friday? ;-P -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net

Re: [PHP] tedd's Friday Post ($ per line)

2010-10-07 Thread Daniel P. Brown
: Unterminated comment starting line 3 on line 3 PHP Parse error: syntax error, unexpected $end on line 4 -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] reporting spam in PHP manual?

2010-09-29 Thread Daniel P. Brown
it themselves? I was just getting ready to do it, but Richard Quadling beat me to the punch. Thanks for pointing it out though, Mike. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List

[PHP] Open Source Website Flowchart and Wireframe Software?

2010-09-29 Thread Daniel Kolbo
Hello, This is not strictly a PHP question, though i do think some members that subscribe to this list might be able to answer this question. Is there an open source website flowchart and wireframe software. My google searches are not quite pulling up what I'm looking for. I would like a piece

Re: [PHP] Re: Copying an Object

2010-09-25 Thread Daniel Kolbo
at 8:35 AM, Peter Lind peter.e.l...@gmail.com wrote: On 24 September 2010 14:22, Bob McConnell r...@cbord.com wrote: From: David Hutto On Fri, Sep 24, 2010 at 4:09 AM, Gary php-gene...@garydjones.name wrote: Daniel Kolbo wrote: Say you have two

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Daniel Kolbo
On 9/24/2010 4:09 AM, Gary wrote: Daniel Kolbo wrote: Say you have two classes: human and male. Further, say male extends human. Let's say you have a human object. Then later you want to make that human object a male object. This seems to be a pretty reasonable thing to request

Re: [PHP] Re: Copying an Object

2010-09-24 Thread Daniel Kolbo
On 9/24/2010 6:11 PM, Daniel Kolbo wrote: On 9/24/2010 8:35 AM, Peter Lind wrote: On 24 September 2010 14:22, Bob McConnell r...@cbord.com wrote: From: David Hutto On Fri, Sep 24, 2010 at 4:09 AM, Gary php-gene...@garydjones.name wrote: Daniel Kolbo wrote: Say you have two classes: human

[PHP] Copying an Object

2010-09-22 Thread Daniel Kolbo
Hello PHPers, I have: class A { ...code } class B extends A { ...code } $a = new A(); $b = new B(); I would like to get all of the properties of $a into $b by value. Class A extends 3 other classes. I would like a way to not have to manage a 'copy' method in B if A or one

Re: [PHP] Copying an Object

2010-09-22 Thread Daniel Kolbo
. On Wed, Sep 22, 2010 at 7:35 AM, Daniel Kolbo kolb0...@umn.edu mailto:kolb0...@umn.edu wrote: Hello PHPers, I have: class A { ...code } class B extends A { ...code } $a = new A(); $b = new B(); I would

Re: [PHP] PHP Warning

2010-09-17 Thread Daniel Brown
), by checking your phpinfo() output. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question about news.php.net

2010-09-14 Thread Daniel Brown
Good to know there's a workaround. I am thinking of using one (or more) of the old VOOM boxes to mirror the news server for NNTP-only access. Sent from my DROID. Apologies if formatting is off or I'm top-posting on a list. On Sep 14, 2010 8:59 PM, Nathan Rixham nrix...@gmail.com wrote: Daniel

Re: [PHP] Question about news.php.net

2010-09-13 Thread Daniel Brown
if it continues to be an issue. In addition, if you continue to have problems, file a bug report at http://bugs.php.net/ and we'll look into it further. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net

Re: [PHP] 1984 (Big Brother)

2010-09-13 Thread Daniel Brown
news postings (before blog became a catchphrase). It was downloaded a few thousand times, and then I quit hosting it. I may actually have that server with those files and a bunch of other old projects in my basement. Now I'm suddenly interested in unpacking and organizing everything. -- /Daniel

Re: [PHP] Question about news.php.net

2010-09-13 Thread Daniel Brown
, but I'll try to get to it as soon as I have time, Mike. -- /Daniel P. Brown Network Infrastructure Manager Documentation, Webmaster Teams http://www.php.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Standalone WebServer for PHP

2010-09-10 Thread Daniel Brown
to the client company, so it won't make it to open source. However, not only can it be done, but there's even some in existence. Check this one out: http://nanoweb.si.kz/ I've never used it myself, but it may be worth a shot for you. -- /Daniel P. Brown Network Infrastructure Manager

Re: [PHP] displaying constants

2010-08-28 Thread Daniel P. Brown
working. To get the assigned value? Drop the quotes. -- /Daniel P. Brown Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting (866-) 725-4321 http://www.parasane.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] strtotime()

2010-08-23 Thread Daniel Brown
). -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] strtotime()

2010-08-23 Thread Daniel P. Brown
day, give or take. I do remember seeing which page had the note, but I don't recall which one. Can you send me the link so that I can pop that out and put the info in the documentation? -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering

Re: [PHP] strtotime()

2010-08-23 Thread Daniel Brown
On Tue, Aug 24, 2010 at 00:37, Rick Pasotto r...@niof.net wrote: http://us2.php.net/manual/en/datetime.formats.relative.php Thank you, sir! -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr

Re: [PHP] mysqldump

2010-08-18 Thread Daniel P. Brown
. That said, sorry for appearing inattentive, despite this being directed right at me. I have been out of the office more than in for the last couple of weeks, while working on a ton of new stuff. Eventually it will go back to normal. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME

Re: [PHP] It's Friday (a MySQL Question)

2010-08-13 Thread Daniel P. Brown
(Where `user` is the username, `database_name` is the database to dump, and `outfile.sql` is the name of the file to which you will write. You will be prompted for the password.) -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br

Re: [PHP] It's Friday (a MySQL Question)

2010-08-13 Thread Daniel P. Brown
* --- if the MySQL and system root passwords are the same, and you have remote root login enabled with password authentication. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net

Re: [PHP] It's Friday (a MySQL Question)

2010-08-13 Thread Daniel P. Brown
On Fri, Aug 13, 2010 at 18:17, Ashley Sheridan a...@ashleysheridan.co.uk wrote: To both David and Daniel, thank you! How on earth I ever missed that argument before is a wonder known only to the great electronic deity in the sky! Hey, Daevid: you may have been thanked first, but at least

Re: [PHP] PHP The Anthem

2010-08-07 Thread Daniel P. Brown
of what is gainful life experience and what is a waste of time will vary greatly from one to another. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http

Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-06 Thread Daniel P. Brown
there may be nothing directly-related to this (I don't know, I haven't looked), you may want to check http://php1.net/ to see some of his other samples for other issues that come up. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today

Re: [PHP] multi thread work?

2010-08-04 Thread Daniel Brown
another curl process without wait answer of the previous one Might want to check into Gearman for this one. http://gearman.org/ -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net

Re: [PHP] mytrash mail thing

2010-08-04 Thread Daniel Brown
that to be the case). I will try to track down and remove the address from the list this week. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http

Re: [PHP] Retaining scroll position after asynchronous refresh NOT PHP

2010-07-23 Thread Daniel P. Brown
, it *is* Friday P.S. - Tedd, when you get a chance, call my cell phone really quick, please. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http

Re: [PHP] What are the curly brackets around variables in SQL statements for?

2010-07-21 Thread Daniel Brown
/manual/en/book.mysql.php That's just basic variable parsing on the PHP side, it's not MySQL-specific. Check out the variable parsing heading at http://php.net/string . -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br

Re: [PHP] What are the curly brackets around variables in SQL statements for?

2010-07-21 Thread Daniel Brown
. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net/ || http://www.pilotpig.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Determining the similarity between a user supplied short piece of text (between 5 and 15 characters) and a list of similar length text items.

2010-07-16 Thread Daniel P. Brown
dearest sir; Thank you for your formal reply. Your email is important to me. Please contact me at your convenience to discuss this reply to your reply. Sincerely, Bozo. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today

[PHP] Recent Influx of Unrelated Discussions

2010-07-15 Thread Daniel Brown
been welcome, but that it shouldn't be the intent of a thread to seek assistance on topics unrelated to PHP and PHP programming in general. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net

Re: [PHP] Determining the similarity between a user supplied short piece of text (between 5 and 15 characters) and a list of similar length text items.

2010-07-15 Thread Daniel P. Brown
it was for which I was searching --- even though I was off by one word. Would've taken me forever to find it using alternative methods. -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http

Re: [PHP] integrating lib (C++) into php

2010-07-15 Thread Daniel P. Brown
it as an extension, as some of us have done in the past. See: http://www.google.com/search?q=writing+php+extensions -- /Daniel P. Brown UNADVERTISED DEDICATED SERVER SPECIALS SAME-DAY SETUP Just ask me what we're offering today! daniel.br...@parasane.net || danbr...@php.net http://www.parasane.net

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