Re: [PHP] Re: array_map() with multiple callback functions

2013-05-08 Thread George Langley
On 2013-05-08, at 1:48 PM, Jim Giner wrote: > On 5/7/2013 5:29 PM, George Langley wrote: >> Hi all. I want to apply strtolower() AND trim() to all items in an array. >> But I don't see a way to call multiple callbacks with the array_map() >> function. >>

[PHP] array_map() with multiple callback functions

2013-05-07 Thread George Langley
Hi all. I want to apply strtolower() AND trim() to all items in an array. But I don't see a way to call multiple callbacks with the array_map() function. Are my two choices the following: // 1) nesting two array_map() calls $cleanData = array_map('trim',(array_map('strtolower',$rawData))); // 2

[PHP] Affordable low-fee e-commerce - DIY?

2013-02-18 Thread George Langley
cards appear to be similar, with some percantage and about .22 cents per transactions. Am wondering what other options I'm missing, that won't take such a chunk out of the low price? Is it easy enough to code to some other API for free (or at least cheaper)? Thanks. George Lang

[PHP] Basic Statistics

2012-10-01 Thread George R Smith
Can anyone recommend a basic php stat package, easy to install and use. Just basic stuff like mean, median, range std dev etc thanks george

[PHP] SOAP problem

2012-09-25 Thread George Pitcher
$params = array( 'RequestSystem' => 'PackTrackerTest', 'SenderName' => 'George', 'MessageId'=> '1234'

[PHP] PHP Subroutine Call Blowing UP with Strings

2012-05-06 Thread George R Smith
All, I am new to PHP (about 3 weeks) and am testing the return of strings from a external database subroutine. This database is not relational, not MySQL, MSSQL or others. Thanks to all in advance for any help. Some info which might be helpful: phpinfo() PHP Version => 5.3.3-7+squeeze8 System =

Re: [PHP] Re: Script failing on extension_dir

2012-04-10 Thread George R Smith
uot;extension_dir" | cut -d" " -f3 /usr/lib/php5/20090626+lfs no root@dell350:/usr/qmsys/qmphp# I am doing this so I can connect the database I use and have only been studying PHP for 5 days. I have attached a file with the results of php -I and the build script. Thanks again G

[PHP] Script failing on extension_dir

2012-04-09 Thread George R Smith
All, I am tying to install php that will talk to the database I us (QM, a pick type database). As I am new to pdp don’t have much experience in figuring out what the qm_ext_build script is failing. Thanks for you help in advance. george I am trying to run following: root@dell350:/usr/qmsys

[PHP] Questionnaire on motivation analysis of open source and open content

2012-02-21 Thread George Tsinarakis
Dear Sirs, We are researchers in Technical University of Crete and our current research is in the field of motivation analysis of open source and open content software projects participants. We would like to ask you to fill a questionnaire and forward it to people involved in such teams and proje

Re: [PHP] Sniping on the List

2011-11-17 Thread George Langley
> >> It's another nail in the coffin of deity constructors. - And just as this thread was getting boringly OT! ;-{)] George Langley Interactive Developer www.georgelangley.ca

[PHP] Sniping on the List

2011-11-14 Thread George Langley
I have kept for reference. Your contributions are very much appreciated - thanks. George Langley Interactive Developer www.georgelangley.ca

Re: [PHP] Frivolous Friday Fun!

2011-11-11 Thread George Langley
On 2011-11-11, at 11:08 AM, Jason Pruim wrote: > > > And on a serious note... To any Past, Present, Or Future service man (Or > woman) Thank you for your sacrifice in defending our ability to send out > these Frivolous Friday emails! :) You're welcome!

[PHP] BP for Looping through an Array

2011-10-28 Thread George Langley
$counter += 1; } Both are the same number of lines, but my tests (see code below) indicate that the foreach loop is twice as fast. Anyone have a "better" way - faster, more efficient, "cooler", etc.? (Or see some flaw in my test code below?

Re: [PHP] different menus for different roles

2011-10-19 Thread George Langley
On 2011-10-20, at 12:31 AM, drupal dev wrote: > I have created two domains in drupal. and two different roles. > > Now i wanted to show different page for each role.can you anybody tell me > how to do it. > > Or share with me if something is readily available. Um, drupal.org woul

Re: [PHP] Problem with code...

2011-10-06 Thread George Langley
uot; . > $_POST['Pfirstname'] . " " . $_POST['Llastname'] . "\n\n"; > >}else{ >$mailmessage .= "Who will pick up the ticket? I will pick it > up my self! \n\n"; > >} > > $mailmessage .= "Payment Method: " . $_POST['paymentMethod']; > >send_email($mailTo, $mailSubject, $mailmessage, $headers); >} > > ?> > > Sometimes... It is dropping the last $mailmessage line... The payment method > in the actual email it sends... > > Anyone have any ideas? I'm stumped Hi there. First thought is perhaps it is not getting a value for paymentMethod and if it doesn't exist, will the line still get added? I would always check to see if every post variable isset, before adding the line. Can write a default line in its place if missing. George Langley Interactive Developer "RIP, Mr. Jobs."

Re: [PHP] book quest

2011-09-29 Thread George Langley
Then get one that focuses on security. O'Reilly has one (or more), but the one I picked up was "Securing PHP Web Applications": http://www.amazon.ca/Securing-PHP-Applications-Tricia-Ballad/dp/0321534344 and was a good read. I just wish book publishers offered an upgrade

Re: [PHP] Any free online tests to test my PHP knowledge?

2011-09-22 Thread George Langley
Doesn't appear to be working. Just has a link to some blog and no results. George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] While on the topic of PHP Web Site Stats - SharePoint...

2011-09-19 Thread George Langley
hing PHP-based, can only imagine companies using SharePoint must have their IT department in charge of the web site. Am sure it's fine as an internal project management tool, but am very concerned when other developers tell me to run away from anyone who chooses to use SharePoint on anything pub

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread George Langley
me that it is Friday. They all blend together when you're between jobs... And now, back to the job search George Langley Interactive Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Repetitive answers . . .

2011-09-09 Thread George Langley
On 2011-09-09, at 11:34 AM, Marc Guay wrote: > That low-hanging fruit is too hard for some to resist... --- Phishing is a art. George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Code should be selv-maintaining!

2011-08-31 Thread George Langley
e True Brace Style in their code examples. Not religious about it, but it does help me know which code I wrote and what was touched by someone else! George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Code should be selv-maintaining!

2011-08-29 Thread George Langley
// end if($myVar) to clarify any long nests. George On 2011-08-29, at 2:05 PM, Richard Riley wrote: > Robert Cummings writes: > >> On 11-08-29 03:42 PM, Rico Secada wrote: >>> You go into your homemade library of code to re-use some piece that you >>> already are usin

Re: [PHP] Fwd: ezmlm warning

2011-07-20 Thread George Langley
ssume it's "fixed"? George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re: [PHP] Your language sucks because...

2011-07-14 Thread George Langley
ORIGIN mid 16th cent.: from Greek tmēsis ‘cutting,’ from temnein ‘to cut.’ George -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Your language sucks because...

2011-07-14 Thread George Langley
ng to PHP 4 and CSS 2, so am wondering how many of the entries have been rectified? (For instance, CSS 3 does have multiple background images.) As well, I suspect that some of them may actually make sense if analyzed as to why they are that way, instead of how the author has grouped them. George Langley Multimedia Developer

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-14 Thread George Langley
On 2011-07-14, at 12:50 AM, Midhun Girish wrote: > > > On Thu, Jul 14, 2011 at 11:18 AM, George Langley > wrote: > On 2011-07-13, at 11:20 PM, Midhun Girish wrote: > > > Hi, > > > > > > - Browsers generally have a 5 minute time-out. If you send the

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread George Langley
re as a file here: <http://www.sitepoint.com/generate-pdfs-php/> You should then be able to generate an email notification to send once the file is complete, with the link to the newly-created file. George Langley Multimedia Developer

Re: [PHP] Report generation as pdf and csv in php application for huge record set

2011-07-13 Thread George Langley
force the output). When the document is finished, you can send a redirection to it or create a link. Remark: even if the browser times out, the script may continue to run on the server. HTH George Langley Multimedia Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Self-whitelisting (WAS: Top Posting)

2011-07-06 Thread George Langley
On 2011-07-06, at 8:02 AM, Jim Giner wrote: > > "George Langley" wrote : >> On 2011-07-05, at 8:52 PM, Jim Giner wrote: >> >>> Huh? You have a problem with a person having a spam filter that requires >>> one valid response to ensure that the mail

[PHP] Self-whitelisting (WAS: Top Posting)

2011-07-05 Thread George Langley
s valid, and can in turn spam you! Can read the ugly details on Wiki: <http://en.wikipedia.org/wiki/Boxbe> I won't subject my company to that nuisance. George Langley Multimedia Developer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Class not used as an object (Scope Resolution Operator)

2011-06-13 Thread George Langley
Thanks all. Assuming is best then to add the static in this case. But it isn't required if I birthed an object first and referenced the object, correct? Am wanting to add some variables to the class so not calling the same query so many times... Thanks again. George On 20

[PHP] Class not used as an object (Scope Resolution Operator)

2011-06-09 Thread George Langley
variables (properties) for any need for persistence, and is just a collection of functions (methods), so I don't see a reason to group them into a class - they could all reside as independent functions within the php file. Is this good? Is there some advantage to making a non-p

Re: [PHP] array_multisort into Natural order?

2010-12-13 Thread George Langley
if so, can that use the natsort()? I don't think an asort() can do either. Note that the original source of this info is a mySQL db call, and it is initially sorted in the query, but again, there doesn't appear to be a way to natural sort an SQL query either. So I get file1, file10, fil

Re: [PHP] Brandon Rampersad wants to chat

2010-06-30 Thread George Langley
Actually, it's been SEVEN times since 19 May, including today's. Perhaps the List Mom could step in here? George On 10-Jun-10, at 3:07 PM, Ashley Sheridan wrote: Please could you not send out these auto messages Brandon as I believe this is the second time a message has hit bot

Re: [PHP] $_GET is Mangling Base64 value

2010-03-11 Thread George Langley
#x27;base64')); Have tested it with strings that also included a / (being the other non-alphanumeric character that Base64 uses), and it remains unaffected. So, guess I can either add the pre-parse wherever I need to, or try to locate the call to see if I can urlencode it (and who am I to argue why they didn't do that too?!) Thanks again. George

[PHP] $_GET is Mangling Base64 value

2010-03-11 Thread George Langley
ols are there, but the GET is removing them. (And to add a wrinkle, this then goes into a Joomla! page, whose getVar() command completely removes the +, so I couldn't even do a string replace, as I don't know where the + should have been!) Tired of looking at the dark re

[PHP] mysqli_connect problem

2010-03-01 Thread Thomas H. George
I am a newbie. The following script works but the second one (below) loads the variables from an html form and then fails. The connection commands in the second sript are identical as the first script was copied from the first. Only the variable values have been changed. #!/usr/bin/php # The f

[PHP] mysqli_connect problem

2010-02-28 Thread Thomas H. George
I am a newbie. The following script works but the second one (below) loads the variables from an html form and then fails. The connection command in the second sript are identical as the first script was copied from the first. Only the variable values have been changed. #!/usr/bin/php # The fol

Re: [PHP] sending email with php

2009-12-29 Thread George Langley
e heavy-duty mail classes (be sure to check the "See Also" section for the full story). I also referenced the following: <http://www.wilsonweb.com/wmt5/html-email-multi.htm> on the basics of sending multi-part e-mail (ie. plain text AND HTML). HTH. George O

Re: [PHP] ip-to-country

2009-12-29 Thread George Langley
;e-zed-p-zed instructions" ;-{)] ) George On 14-Dec-09, at 5:07 AM, Angelo Zanetti wrote: -----Original Message- From: George Langley [mailto:george.lang...@shaw.ca] Sent: 19 October 2009 01:38 AM To: php-general@lists.php.net Subject: Re: [PHP] ip-to-country On 18-Oct-09, at 1:03 PM, SE

Re: [PHP] ip-to-country

2009-10-18 Thread George Langley
On 18-Oct-09, at 1:03 PM, SED wrote: How can I access an index for IP to a country (or a more detailed location)? <http://www.maxmind.com/app/ip-location> has both free and various paid services. George -- PHP General Mailing List (http://www.php.net/) To unsub

Re: [PHP] PHP broadcast mailer

2009-10-17 Thread George Langley
On 16-Oct-09, at 11:56 PM, George Langley wrote: At what point would it be beneficial to subscribe to a mass mail service such as Constant Contact or iContact, to avoid being blacklisted for sending too many e-mails? On 17-Oct-09, at 12:01 AM, Brian Hazelton wrote: I am sorry, but I am

Re: [PHP] PHP broadcast mailer

2009-10-16 Thread George Langley
Hi there. At what point would it be beneficial to subscribe to a mass mail service such as Constant Contact or iContact, to avoid being blacklisted for sending too many e-mails? George On 16-Oct-09, at 11:41 PM, Brian Hazelton wrote: I am in charge of an email newsletter list and making

Re: [PHP] Web Site Directory Layout

2009-09-27 Thread George Langley
ntent/[language]/ structure, to put my content php files in, while leaving the structural php files on the root. User preferences and cookies form the path to grab the content, but this way you get similar (and shorter) URLs. George Langley Multimedia Developer www.georgelangley.ca

Re: [PHP] header problem

2009-09-09 Thread George Langley
php calls. George On 10-Sep-09, at 12:27 AM, A.a.k wrote: hello I recentrly uploaded my project from localhost to a hosting and found many errors and warnings which didnt have in local. one of the most annoying one is header('Location xxx'). I have used header to redirect users

Re: [PHP] Write Japanese text into an existing PDF

2009-08-31 Thread George Langley
Cool - looks like it could be used to brand a PDF with dynamic text inserted by a visitor to your site. This has potential for me! Thanks! George Langley Musician, Arranger, Composer www.georgelangley.ca -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

Re: [PHP] Re: File or directory?

2009-08-16 Thread George Langley
is_dir() <http://ca3.php.net/is_dir> is_file() <http://ca3.php.net/manual/en/function.is-file.php> George Langley On 15-Aug-09, at 5:45 PM, Clancy wrote: On Sat, 15 Aug 2009 10:33:07 +0100, a...@ashleysheridan.co.uk (Ashley Sheridan) wrote: On Sat, 2009-08-15 at 09:56

[PHP] Can php be cause a strain on a web server

2009-08-07 Thread Curious george
Is there a case where php can become unscalable for a web sever ? If so can anyone please state to me how... Thanks George

Re: [PHP] Sorting mySQL query - one order from multiple fields

2009-07-26 Thread George Langley
e it finds a value for first, for each record. Note how this differs from a multi sort, which sorts by the first field, then subsorts by the second, third, etc. Hope this helps someone. George Langley Multimedia Developer, Audio/Video Editor, Musician, Arranger, Compose

[PHP] Sorting mySQL query - one order from multiple fields

2009-06-14 Thread George Langley
HEN rotime1 ELSE time"); Is there a query sort that will work in this case? Is not the usual "sort by last name, then sort by first name" scenario! Thanks for any pointers. George Langley Multimedia Developer, Audio/Video Editor, Musician, Arranger, Composer http://www.

[PHP] Debugging

2009-04-24 Thread George Larson
Understanding that some coders are diametrically opposed to all assistance from debuggers as crutches, I offer this link for the rest of us: http://particletree.com/features/php-quick-profiler/ Mine was pointing to the wrong folder and still has some warnings so I think these guys might have hurri

Re: [PHP] Multiple return statements in a function.

2009-04-23 Thread George Larson
On Thu, Apr 23, 2009 at 8:25 AM, Per Jessen wrote: > Peter van der Does wrote: > >> I tend to put my return value in a variable and at the end of the >> function I have 1 return statement. >> I have seen others doing returns in the middle of the function. >> >> Example how I do it: >> function che

Re: [PHP] ! and !=

2009-04-22 Thread George Langley
Doh, of course! Just not thinking about the scope of the operator. If $var1 = 1, then !$var1 = 0 Thanks everyone! George - Original Message - From: Tom Rogers Date: Wednesday, April 22, 2009 17:01 Subject: Re: [PHP] ! and != To: George Langley Cc: php-general

[PHP] ! and !=

2009-04-22 Thread George Langley
Hi all. Maybe I'm just getting confused by all the languages I'm trying to work with! But, isn't: if(!$var1 == $var2){ the same thing as if($var1 != $var2){ #1 doesn't work, #2 does. Thanks! George Langley    Multimedia Developer    Audio/Vide

Re: [PHP] alt() - unknown function?

2009-04-15 Thread George Larson
This is someplace where NetBeans really benefits me. You can hit CTRL-B, or right-click, to take you to a definition. Holding CTRL turns darned-near everything into a hyperlink, doing the same thing. Lastly, CTRL-SHIFT-F lets you search through every file in the project for your string. Finding

Re: [PHP] extracting text - regex

2009-04-08 Thread George Larson
On Wed, Apr 8, 2009 at 9:13 AM, George Larson wrote: > I'm what you might consider rather green, myself. > I certainly wouldn't use this code for production but if you're just > debugging or something then how about something like this: > > $handle = @fo

Re: [PHP] extracting text - regex

2009-04-08 Thread George Larson
I'm what you might consider rather green, myself. I certainly wouldn't use this code for production but if you're just debugging or something then how about something like this: ") !== FALSE) { $echo_output = TRUE; } if (strpos($eos,"<\div>") !== FALSE) { $echo_output = FALSE; }

Re: [PHP] Best Practices for Hiding Errors

2009-04-08 Thread George Langley
easier way and just the one time may not be too bad. So maybe is best to turn it off in the actual ini, and turn on only for me, based on my IP or some other flag. Thanks again! George Langley Multimedia Developer, Audio/Video Editor, Musician, Arranger, Composer http://www.george

[PHP] Best Practices for Hiding Errors

2009-04-06 Thread George Langley
end user won't ever get the warning displayed and I can deal with the error behind the scenes? Or is there a better way to keep PHP from writing error codes to the screen? Thanks! George Langley    Multimedia Developer    Audio/Video Editor    Musician, Arranger, Composer www.

Re: [PHP] [php] scheduled task in php

2009-04-02 Thread George Larson
On Thu, Apr 2, 2009 at 10:12 AM, Kyle Smith wrote: > There's no need for third party software, windows has a scheduled task > system. > > Make a scheduled task and for the application select the php executable > (Maybe C:\PHP\bin\php.exe, or some such.). Once the wizard is complete > select the c

Re: [PHP] Workflow app for software

2009-04-01 Thread George Larson
Please quit side-posting. Thanks. On Wed, Apr 1, 2009 at 2:58 PM, Robert Cummings wrote: > I for one don't find you very | On Wed, 2009-04-01 at 11:46 -0700, > funny Bruce. It's common knowledge | bruce wrote: so haliphax... > that it's very difficult to follow | > > side posts. If not alre

[PHP] PHP task manager

2009-03-31 Thread George Larson
We've got a homebrew ToDo list (task & project) manager / mailer that we're thinking about replacing with something a little more robust. Any suggestions? I saw TaskFreak! on Google but I am curious if there are any personal recommendations out there. Thanks! G

Re: [PHP] Limit Local Search to Content

2009-03-26 Thread George Langley
t storing all of the page content in the database to start with, then searching with a mysql statement is a breeze! On Thu, 2009-03-26 at 16:29 -0600, George Langley wrote: - Original Message - From: Stuart You can't have any extra info in a closing HTML tag. This problem is usual

Re: [PHP] Limit Local Search to Content

2009-03-26 Thread George Langley
our STOP five six START seven eight STOP nine ten"; contentString($theString, $startTerm, $stopTerm); // outputs "one two three four seven eight" // test string with no space between separators and real content $theString = "STARTone twoSTOP three four STARTfive sixSTOP seven eight STARTnine ten"; contentString($theString, $startTerm, $stopTerm); // outputs "one two five six nine ten" ?> Any thoughts/suggestions? Thanks! George

Re: [PHP] Limit Local Search to Content

2009-03-26 Thread George Langley
> 2009/3/26 George Langley : > > How do I STOP it? Is it permissible to add the id again in the > closing div tag ie . > From: Stuart > You can't have any extra info in a closing HTML tag. This > problem is > usually handled using comments. Something like the fol

[PHP] Limit Local Search to Content

2009-03-26 Thread George Langley
e a better way to trigger the recording of words on/off? Thanks! George Langley    Multimedia Developer    Audio/Video Editor    Musician, Arranger, Composer www.georgelangley.ca

Re: [PHP] So called "PHP Expert"

2009-03-23 Thread George Larson
OMGBBQ I didn't even catch that! He truly is the c0d1ng g0d! On Mon, Mar 23, 2009 at 12:45 PM, haliphax wrote: > On Fri, Mar 20, 2009 at 5:27 PM, דניאל דנון wrote: > > ---8<--- > > > ### > > function h3x($envar){ > >$hax3d = bin2hex($envar); > >

Re: [PHP] Proper code formatting

2009-03-23 Thread George Larson
like lower case variable names with underscores for spaces while the next guy likes each letter of a new word in uppercase. However, I can imagine it getting out of control as the code continues to grow. On Mon, Mar 23, 2009 at 8:48 AM, Jason Pruim wrote: > George Larson wrote: > >&g

Re: [PHP] Proper code formatting

2009-03-23 Thread George Larson
On Mon, Mar 23, 2009 at 8:23 AM, Shawn McKenzie wrote: > Bob McConnell wrote: > > From: Michael A. Peters > >> Angus Mann wrote: > >>> Hi all, I'm fairly new to PHP so I don't have too many bad habits > > yet. > >>> I'm keen to make my code easy to read for me in the future, and for > >>> others a

Re: [PHP] Web Development/Application Analysis

2009-03-22 Thread George Larson
2009/3/22 OOzy Pal > On Sat, Mar 21, 2009 at 6:33 PM, tedd wrote: > > At 6:15 PM +0300 3/21/09, OOzy Pal wrote: > >> > >> Tedd, > >> > >> You wrote a long story about a client hiring a programmer which not > >> what I am asking. > >> > >> Anyhow, thank you for your post. I learned from it. > >>

Re: [PHP] Script Analysis (was Conclusion of "use strict"...)

2009-03-21 Thread George Larson
**On Sat, Mar 21, 2009 at 10:27 AM, Hans Schultz wrote: > Hi Virgilio, > Thanks for that last link, I just know need to figure out why my Netbeans > doesn't work > like that (although I am using latest version) > > On Sat, 21 Mar 2009 10:56:46 +0100, Virgilio Quilario < > virgilio.quila...@gmail.c

Re: [PHP] Web Development/Application Analysis

2009-03-21 Thread George Larson
On Sat, Mar 21, 2009 at 9:40 AM, tedd wrote: > At 11:45 PM +0300 3/20/09, OOzy Pal wrote: > >> I guess I did not make it clear. Sorry guys/gals. I forgot to tell you >> that I own a web development/design company. >> >> Thank you >> >> -- >> OOzy >> > > What does that have to do with your questio

Re: [PHP] Dynamic Form 'on The Fly' OT

2009-03-21 Thread George Larson
On Sat, Mar 21, 2009 at 8:58 AM, tedd wrote: > At 1:03 PM -0500 3/20/09, Lists wrote: > >> tedd wrote: >> >>> Now, can you show me how to pull data from a mysql database so that the >>> input statements can be created dynamically? >>> >> >> >> Sure, >> On the WebDNA side, it's something like this

Re: [PHP] Script Analysis (was Conclusion of "use strict"...)

2009-03-20 Thread George Larson
Ooops! Those were v5.5 videos.. A little newer stuff is here: http://www.netbeans.org/kb/docs/screencasts.html On Fri, Mar 20, 2009 at 7:44 PM, George Larson wrote: > Netbeans does have some sick fanciness... Auto-suggest, leaving your > cursor over a variable momentarily highlig

Re: [PHP] Script Analysis (was Conclusion of "use strict"...)

2009-03-20 Thread George Larson
Netbeans does have some sick fanciness... Auto-suggest, leaving your cursor over a variable momentarily highlights it everywhere in the code and define labeled folding points. You can press CTRL-R to rename that variable everywhere it is used in the code. If you can figure out how to set it up w

Re: [PHP] PHP blogs?

2009-03-20 Thread George Larson
Got it! Thanks! On Fri, Mar 20, 2009 at 2:53 PM, Stuart wrote: > 2009/3/20 George Larson : > > I'm reorganizing my reader. Anybody suggest any good PHP feeds? > > http://www.planet-php.net/ is an aggregator of some of the good stuff > that's out there. > > -Stuart > > -- > http://stut.net/ >

Re: [PHP] PHP blogs?

2009-03-20 Thread George Larson
Fantastic! No, I had somehow managed to overlook that one. Thanks! On Fri, Mar 20, 2009 at 2:49 PM, Daniel Brown wrote: > On Fri, Mar 20, 2009 at 14:37, George Larson > wrote: > > I'm reorganizing my reader. Anybody suggest any good PHP feeds? > > Are you already

Re: [PHP] [News] Affordable Independent Web Developer - Search Engine Optimization Services - March 19th, 2009

2009-03-20 Thread George Larson
> > I do have a thick leather belt with your name on it. I bet it's in uppercase letters, you little vixen. On Fri, Mar 20, 2009 at 2:47 PM, Ginkga Studio, LLC wrote: > Georgeyou are SO close to getting spanked. > > I do have a thick leather belt with your name on

Re: [PHP] [News] Affordable Independent Web Developer - Search Engine Optimization Services - March 19th, 2009

2009-03-20 Thread George Larson
> again. > > Good luck with all your programming. You all seem like pretty good people. > > Sorry for harassing you George. I'm sure you are sexy in something short > and > lacy. > > Sorry for offending Daniel and all of his greatness. I'm sure he's a

[PHP] PHP blogs?

2009-03-20 Thread George Larson
I'm reorganizing my reader. Anybody suggest any good PHP feeds?

Re: [PHP] [News] Affordable Independent Web Developer - Search Engine Optimization Services - March 19th, 2009

2009-03-20 Thread George Larson
Oh, good; I look forward to polishing your nails... spammer. On Fri, Mar 20, 2009 at 2:29 PM, Thiago H. Pojda wrote: > On Fri, Mar 20, 2009 at 3:23 PM, Ginkga Studio, LLC >wrote: > > > > > IF YOU WERE MY HUSBAND I WOULD SPANK YOUR ASS SO HAR YOU'D NEVER TALK > BACK > > ANY WOMAN EVER AGAIN !!! >

Re: [PHP] [News] Affordable Independent Web Developer - Search Engine Optimization Services - March 19th, 2009

2009-03-20 Thread George Larson
I believe that I read somewhere that she designs all web sites in a French maid uniform. On Fri, Mar 20, 2009 at 1:21 PM, Jay Blanchard wrote: > [snip]"hey, everyone, my name is Samantha[/snip] > > This thread is worthless without pictures. >

Re: [PHP] [News] Affordable Independent Web Developer - Search Engine Optimization Services - March 19th, 2009

2009-03-20 Thread George Larson
Not only that but, judging from the phone number, Samantha cleans also cleans houses: http://betterthancleanmaidandmaintenanceservices.com/choose-us/contact-us-mainmenu-3/12-contacts/1-name.html On Fri, Mar 20, 2009 at 10:57 AM, Jochem Maas wrote: > Ginkga Studio LLC schreef: > > Today's Date: M

Re: [PHP] Re: Problems with exec() on windows

2009-03-20 Thread George Larson
I've skimmed some of thread, but I have not been following closely so please disregard if I'm just rambling. However, I've worked with lots of software on DOS boxen that couldn't handle long file names. If they also choke on the tildes then I usually just write a batch file that calls the full pa

Re: [PHP] Form to pdf

2009-03-18 Thread George Larson
I'm going to print one to 'Fork and Zombies' and hang it in my office. I really mean that. On Wed, Mar 18, 2009 at 10:17 AM, Gary wrote: > I'm going to frame that and call my ma > > Can you direct me to how I can learn that? > > Thanks for your help. > > Gary > "Sperling Institute of Techno

Re: [PHP] "/home/{user}/directory"

2009-03-18 Thread George Larson
all kinds of interesting stuff with a var_dump($GLOBALS), however. :) As always, thanks everybody! On Wed, Mar 18, 2009 at 5:16 AM, Waynn Lue wrote: > bash also has $HOME, which maps to /home/USERNAME, just in case you wanted > another way. :) > > > On Tue, Mar 17, 2009 at 6:47

Re: [PHP] Re: Fork and zombies

2009-03-17 Thread George Larson
If "Fork and Zombies" was a diner... I would totally eat there. On Tue, Mar 17, 2009 at 5:00 PM, Jochem Maas wrote: > Per Jessen schreef: > > Waynn Lue wrote: > > > >> (Apologies for topposting, I'm on my blackberry). Hm, so you think > >> exiting from the child thread causes the db resource to

Re: [PHP] "/home/{user}/directory"

2009-03-17 Thread George Larson
That is correct. PHP on CLI. Thanks! On Tue, Mar 17, 2009 at 9:51 AM, Thiago H. Pojda wrote: > On Tue, Mar 17, 2009 at 10:42 AM, George Larson > wrote: > >> In my scripts, I usually define a boolean constant DEBUG. True looks for >> local copies of includes and echoes qu

Re: [PHP] "/home/{user}/directory"

2009-03-17 Thread George Larson
Thanks! On Tue, Mar 17, 2009 at 9:46 AM, Stuart wrote: > 2009/3/17 George Larson > > In my scripts, I usually define a boolean constant DEBUG. True looks for >> local copies of includes and echoes queries as they're used. >> >> My question is: >> >

[PHP] "/home/{user}/directory"

2009-03-17 Thread George Larson
In my scripts, I usually define a boolean constant DEBUG. True looks for local copies of includes and echoes queries as they're used. My question is: Is there any way for me to reflect the actual home folder of the person running the script? So it will be "/home/george/foo" wh

Re: [PHP] Opendir on site root directory?

2009-03-09 Thread George Larson
"but it had become lost in the detritus at the back of my mind" Inappropriate as this is for _the_ PHP list -- that was a beautiful phrase, friend. On Mon, Mar 9, 2009 at 8:05 PM, Clancy wrote: > On Mon, 9 Mar 2009 10:07:33 +, stut...@gmail.com (Stuart) wrote: > > ... > >As in the examp

Re: [PHP] Script execution

2009-03-09 Thread George Larson
seemingly-gruff > response: ;-P Todd's alright by me. > >George, a cron - if run as the same user that owns the files - > should work with no problem. > > -- > > daniel.br...@parasane.net || danbr...@php.net > http://www.parasane.net/ || http://www.pilotpig.net/ > 50% Off All Shared Hosting Plans at PilotPig: Use Coupon DOW1 >

Re: [PHP] Script execution

2009-03-09 Thread George Larson
I need to. Again, that's for the rapid and thorough help! G On Mon, Mar 9, 2009 at 5:17 PM, haliphax wrote: > On Mon, Mar 9, 2009 at 4:04 PM, Daniel Brown wrote: > > On Mon, Mar 9, 2009 at 16:59, George Larson > wrote: > >> > >> Am I imagining things? If not,

[PHP] Script execution

2009-03-09 Thread George Larson
Hi everybody. The "problem" that I'm having is probably because I've got more of a Windows background -- and it isn't so much a problem as a point of curiosity. I've recently noticed that when I write a script that they seem to have different permissions when executed at the command line. Two th

Re: [PHP] verify data in fields

2009-03-08 Thread George Larson
Ash certainly does raise an interesting point. :) Couldn't you just use DESCRIBE or EXPLAIN the tables through MySQL? On Sun, Mar 8, 2009 at 4:35 PM, Ashley Sheridan wrote: > On Sun, 2009-03-08 at 10:25 -0500, PJ wrote: > > My mysql table contains data. But I don't know how to verify what > >

Re: [PHP] web refreshing problem

2009-03-08 Thread George Larson
Maybe you could use a javascript refresh? But that would still mean resubmitting the form. On Sun, Mar 8, 2009 at 11:35 AM, Andrew Williams wrote: > Hi, > > my php program does not display current result of submitted form > instead the previous content is shown until you refresh manually > (which

Re: [PHP] PHP includes

2009-03-08 Thread George Larson
Right. There are several advantages to using included files. You can write routines that you're going to use repeatedly and just include the file with the code, instead of re-inventing the wheel, as they say. Consistency is another advantage. So, if you design your header, sidebar and footer a

Re: [PHP] Backend autodatabase update

2009-03-08 Thread George Larson
still running. On Sun, Mar 8, 2009 at 4:42 AM, Andrew Williams wrote: > *I want to check that the job is still running and start, if it stopped > because the program is meant to consistently update for the global market? > * > > On Sat, Mar 7, 2009 at 11:19 PM, George Larson > w

Re: [PHP] Backend autodatabase update

2009-03-07 Thread George Larson
I'm new to the list, so maybe I've missed something. Please disregard if I'm blathering idiotically. What OS are you using? Do you mean that you want to run the job repetitively (again and again) or do you mean that you want to check that the job is still running and start, if it stopped? On Sa

Re: [PHP] Don't Forget to Punch the Clock, Shorty!

2009-02-12 Thread George Langley
nd then it starts having problems. Don't know if something in your code, or just my machine acting up! But may be worth testing somewhere else. HTH. George Langley Multimedia Developer, Audio/Video Editor, Musician, Arranger, Composer http://www.georgelangley.ca -- PHP Gener

  1   2   3   4   5   6   >