RE: [PHP] Detect and Redirect Mobile Users

2013-06-14 Thread Ford, Mike
assign TRUE or FALSE?? Since the thing you're testing has the value you want in the first place, just flipping assign it! $isMobile = isset($browser['ismobiledevice']) $browser['ismobiledevice']; /rant Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning

RE: [PHP] target question

2013-03-25 Thread Ford, Mike
problem, however, about which I have very little clue. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f...@leedsmet.ac.uk T: +44 113

RE: [PHP] Re: UNLESS Statement Equivalent

2013-03-12 Thread Ford, Mike
: if ($current_page != $saved_page || $current_ip != $saved_ip || $current_dt = $saved_dt + 3600) Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f

RE: [PHP] Re: UNLESS Statement Equivalent

2013-03-12 Thread Ford, Mike
-Original Message- From: Arno Kuhl [mailto:a...@dotcontent.net] Sent: 12 March 2013 13:04 Mike, I presume you're saying the precedence of the Boolean keyword operators is lower than the Boolean symbol operators, but if so then wouldn't there be less need for the parentheses? I

RE: [PHP] Re: Stupid question

2013-02-27 Thread Ford, Mike
to be aware of :). Curly braces as an alternative to square brackets have been deprecated for, oooh, probably several years now...! Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland

Re: [PHP] Random 404 screens

2013-02-09 Thread Mike Mackintosh
On Saturday, February 9, 2013 at 11:51 AM, Geoff Shang wrote: On Sat, 9 Feb 2013, Jim Giner wrote: Lately, my web pages are giving me some problems. Once a day or so one or more of my pages/scripts will give me a 404 error page saying my web page has timed out. Problem is that the

RE: [PHP] how to calculate how much data does each ip address use ?

2013-02-01 Thread Mike Mackintosh
Original message From: Sean Greenslade zootboys...@gmail.com Date: To: Bulent Malik bma...@ihlas.net.tr Cc: php-general@lists.php.net Subject: RE: [PHP] how to calculate how much data does each ip address use ? On Feb 1, 2013 10:25 AM, Bulent Malik bma...@ihlas.net.tr

Re: [PHP] PDO mysql Connection issue

2012-11-28 Thread Mike Mackintosh
DNS within MYSQL by starting with --skip-name-resolve (http://dev.mysql.com/doc/refman/5.0/en/server-options.html#option_mysqld_skip-name-resolve); -- Mike Mackintosh PHP 5.3 ZCE

RE: [PHP] select function

2012-10-25 Thread Ford, Mike
-Original Message- From: Stuart Dallas [mailto:stu...@3ft9.com] Sent: 25 October 2012 22:48 Aw, nuts! Stuart, you just beat me to it! I was half way through writing an almost identical post when yours popped into my Inbox Cheers! Mike -- Mike Ford, Electronic Information

RE: [PHP] Array help.

2012-10-24 Thread Ford, Mike
(), thus: $ocTest = explode(., $ip); if (isset($groupMappings[$ocTest[2]])): // success else: // fail endif; Hope this helps! Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Information Portland PD507, City Campus, Leeds Metropolitan

RE: [PHP] Wrong time being displayed by PHP!

2012-10-18 Thread Ford, Mike
is currently showing the following for me: 02:09:27 am America/Los_Angeles America/Los_Angeles Thu, 18 Oct 2012 02:09:27 -0700 Thu, 18 Oct 2012 09:09:27 + 1350551367 (-25200) Thu Oct 18 02:09:27 PDT 2012 Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation

RE: [PHP] How do I do count the occurrence of each word?

2012-08-20 Thread Ford, Mike
{ $freq[$word]++; } } Erm... $freq = array_count_values($words) (http://php.net/array_count_values) Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS

Re: [PHP] File moving hell on Windows

2012-07-31 Thread Mike Mackintosh
On Tuesday, July 31, 2012 at 9:35 PM, tamouse mailing lists wrote: On Jul 31, 2012 12:12 PM, Brian Dunning br...@briandunning.com (mailto:br...@briandunning.com) wrote: Regular Windows networking. On Jul 30, 2012, at 2:29 PM, Mike Mackintosh mike.mackint...@angrystatic.com

Re: [PHP] File moving hell on Windows

2012-07-30 Thread Mike Mackintosh
of network credentials with each read and write. Thanks... :-( -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php What protocol are you targeting? FTP, SFTP, SSH, SMB, etc? -- Mike Mackintosh PHP 5.3 ZCE

RE: [PHP] Re: php form action breaks script

2012-07-02 Thread Ford, Mike
the alternative block syntax with initial : and end... tags -- but then, the forests of curly braces others seem to find acceptable make my eyes go fuzzy, so go figure) Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus

RE: [PHP] Can I do this in a single match/replace?

2012-06-28 Thread Ford, Mike
. $new_string = preg_replace($pattern, 'a href=http://$1;$1/a' , $string); should do it -- don't *think* you need any pesky \ escapes in the replacement, but could be wrong on that one, so please suck it and see... Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning

Re: [PHP] why is (intval('444-44444') == '444-44444') EQUAL??!

2012-06-21 Thread Mike Mackintosh
Using == will compare the two values after type juggling is performed. === will compare based on value and type (identical). PHP Will type juggle the string to an integer. Your if/else is just like saying: php if (444 == 444) echo 'equal'; else echo 'not equal'; equal -- Mike Mackintosh PHP

RE: [PHP] Exception Handling

2012-06-01 Thread Mackintosh, Mike
-Original Message- From: James Colannino [mailto:crankycycl...@gmail.com] Sent: Friday, June 01, 2012 10:25 AM To: PHP-General List Subject: [PHP] Exception Handling Hey guys, Haven't posted in a long time... Happy Memorial Day! I have an issue with exception handling. I'm using a

RE: [PHP] Exception Handling

2012-06-01 Thread Mackintosh, Mike
-Original Message- From: James Colannino [mailto:crankycycl...@gmail.com] Sent: Friday, June 01, 2012 11:14 AM To: PHP-General List Subject: Re: [PHP] Exception Handling Hey Mike, Thanks for the reply! I saw this comment in the documentation (http://www.php.net/manual/en

[PHP] Dynamically Populating Multi-Dimensional Arrays

2012-05-31 Thread Mackintosh, Mike
passed to the index array. When attempting to do the same with Variable Variables, the addition of brackets caused the PHP Parser to die. Does anyone have any suggestions or alternatives to achieving the same results? Thanks, Mike Array: $array = array( array('name

RE: [PHP] passing /n into query ERROR

2012-05-31 Thread Mackintosh, Mike
-Original Message- From: Don Wieland [mailto:d...@pointmade.net] Sent: Thursday, May 31, 2012 12:46 PM To: php-general@lists.php.net Subject: [PHP] passing /n into query ERROR I have a query below. When I try to run it with PHP it errors: DATABASE_ERROR: You have an error in your SQL

RE: [PHP] [foreach] - is it proper to...

2012-05-31 Thread Mackintosh, Mike
, $ entries remains an array, and $entry a string. Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] alias address in REMOTE_ADDR

2012-05-12 Thread Mike Mackintosh
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Do a netstat -ab and see what ip/ports apache is listening on. Mike Mackintosh ZCE PHP5.3 www.highonphp.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Performance / AB issue?

2012-05-11 Thread Mike Mackintosh
How is PHP running, fast-cgi, sapi, etc..? Is there anything in the error_log for apache? Could be an issue with prefork/worker. Thanks, Mike Mackintosh PHP, the drug of choice - www.highonphp.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Calculating driving distance between UK postcodes

2012-05-04 Thread Mike Mackintosh
with the form data as post payload. -- Mike Mackintosh www.HighOnPHP.com

Re: [PHP] sms class

2012-04-17 Thread Mike Mackintosh
Aggregator. Once you subscribe to their service, they usually offer an API. -- Mike Mackintosh www.HighOnPHP.com On Tuesday, April 17, 2012 at 15:50, Lester Caine wrote: DZvonko Nikolov wrote: I need a class that sends sms messages to list of numbers. I'm quite new to that issue, so I need

Re: [PHP] securing a script that exec()s

2012-03-30 Thread Mike Mackintosh
. How would I best fix this? Simply log on your box via ssh (if its a unix system) and run your script from console or with textmode browser lynx. But the best solution would be to secure the exec call. How would I best secure the exec call? What would the form input look like? Mike

Re: [PHP] Graphing

2012-03-18 Thread Mike Mackintosh
Take a look at pChart2. It's the simplest and quickest way to generate a lot of nice graphs. Only requires GD. Look at the source and you can follow their syntax. -- Mike Mackintosh www.HighOnPHP.com On Sunday, March 18, 2012 at 9:33, Ross Hansen wrote: Hey all, I have been working

Re: [PHP] Any SNMP Guru's?

2012-03-15 Thread Mike Mackintosh
Mike Mackintosh PHP, the drug of choice - www.highonphp.com On Mar 15, 2012, at 4:12 PM, David OBrien wrote: Using command line snmpget you can set an option to append leading 0's to hex values -o0 So instead of $macaddress = 0:1a:4b:c:8d:fb; it would be $macaddress = 00:1a:4b:0c

RE: [PHP] Function mktime() documentation question

2012-03-09 Thread Ford, Mike
-Original Message- From: Tedd Sperling [mailto:tedd.sperl...@gmail.com] Sent: 08 March 2012 23:15 To: PHP-General List [previous discussion snipped] Mike: Very well put. You say: Huh? The 0th day of next month *is* the last day of the current month, which gives you

Re: [PHP] no traffic

2012-03-06 Thread Mike Mackintosh
returns, any open outgoing sockets? Mike Mackintosh ZCE PHP5.3 www.highonphp.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] iphone php

2012-03-05 Thread Mike Mackintosh
On Mar 5, 2012, at 12:30, Jim Giner jim.gi...@albanyhandball.com wrote: Download dolphin browser, it's a free safari replacement using webkit. Try you app in there and post back the results. Mike Mackintosh ZCE PHP5.3 www.highonphp.com -- PHP General Mailing List (http://www.php.net

Re: [PHP] iphone php

2012-03-05 Thread Mike Mackintosh
On Mar 5, 2012, at 12:52, Jim Giner jim.gi...@albanyhandball.com wrote: Jay Blanchard jay.blanch...@sigmaphinothing.org wrote in message news:4f54faf8.4030...@sigmaphinothing.org... [snip]In the last few mins I re-booted my phone and it is now doing something even worse! [/snip] Have

Re: [PHP] Do an LDAP Password Modify Extended Operation?

2012-02-17 Thread Mike Mackintosh
On Feb 17, 2012, at 10:57, kirk.john...@zootweb.com wrote: Is it possible to do an LDAP Password Modify Extended Operation, as specified in RFC 3062? The password hashing scheme in the LDAP directory I am working with may change periodically, so it is my understanding that I can't hash a

Re: [PHP] Do an LDAP Password Modify Extended Operation?

2012-02-17 Thread Mike Mackintosh
On Feb 17, 2012, at 3:34 PM, kirk.john...@zootweb.com wrote: Mike Mackintosh mike.mackint...@angrystatic.com wrote on 02/17/2012 12:36:06 PM: On Feb 17, 2012, at 10:57, kirk.john...@zootweb.com wrote: Is it possible to do an LDAP Password Modify Extended Operation, as specified in RFC

RE: [PHP] Function links on error and warningmessages

2012-02-03 Thread Ford, Mike
haven't set the docref_root configuration option? (See http://php.net/errorfunc.configuration.php#ini.docref-root). Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS, LS1

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
If you don't get any replies, try the Dev Mailing list. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
btw, php dev = internals -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Looking for the string functions

2012-02-01 Thread Mike Mackintosh
On Feb 1, 2012, at 18:49, Matijn Woudt tijn...@gmail.com wrote: On Thu, Feb 2, 2012 at 12:17 AM, Tim Streater t...@clothears.org.uk wrote: I'm keen to look at the C source of such as substr_replace() and stripos(). I've downloaded the 5.3.9 PHP source, but am having difficulty locating

RE: [PHP] sessions and expirations and isolations

2012-01-18 Thread Ford, Mike
that session information is kept in system memory, as the default is for it to be serialized and saved in a regular file on disk. There are other options (database, shared memory, ...), but disk files are the default. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries

Re: [PHP] PHP-GTK dead?

2012-01-10 Thread Mike Mackintosh
On Jan 10, 2012, at 14:19, Yared Hufkens y4...@yahoo.de wrote: It seems that PHP-GTK is completely dead. The latest version (2.0.1) was released on May 2008, nobody answers on questions in the mailing list, and the latest SVN commit is nearly one year ago. Am I wrong or is it senseless to

Re: [PHP] passing variables to php script

2012-01-10 Thread Mike Mackintosh
On Jan 10, 2012, at 15:12, Marco Behnke ma...@behnke.biz wrote: Am 10.01.12 21:07, schrieb Donovan Brooke: David Savage wrote: OK...I admit I'm new at thisI have this html file: html head titleGenerate pdf file of LD, Toll Free, and Directory Assistance calls/titl /head body form

Re: [PHP] Working on a Subsummary Report

2011-12-16 Thread Mike Mackintosh
On Dec 16, 2011, at 12:04, Dave deal...@gmail.com wrote: Hi all, I need to create a year to date report with individual Subsummary Report (ala filemaker / others?) headings for each month. So, I’m curious the best way to approach this for performance speed and flexibility etc. - I

Re: [PHP] socket_recv

2011-11-17 Thread Mike Mackintosh
On Nov 17, 2011, at 14:03, Tim Streater t...@clothears.org.uk wrote: I'm playing around with web sockets and have found a couple of simple servers written in PHP. They both appear to perform the initial handshake with a client but then just give up because socket_recv reports that there is

Re: [PHP] problem with sending AT command in php

2011-11-15 Thread Mike Mackintosh
On Nov 15, 2011, at 8:25, Richard Quadling rquadl...@gmail.com wrote: On 15 November 2011 11:50, a dehqan dehqa...@gmail.com wrote: \n is for Linux \r is for Windows On 11/14/11, Richard Quadling rquadl...@gmail.com wrote: On 12 November 2011 20:02, a dehqan dehqa...@gmail.com wrote:

[PHP] binary subtraction assistance

2011-10-20 Thread Mike Alaimo
get 4.2540766452641E+37 for both $dec1 and $dec2. What can I do to resolve the problem? Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] CGI PHP vs. FastCGI vs. mod_php vs. application server?

2011-10-12 Thread Mike Mackintosh
Nice write up Richard On Oct 12, 2011, at 7:06, Richard Quadling rquadl...@gmail.com wrote: -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Variable question

2011-10-03 Thread Ford, Mike
instead. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f...@leedsmet.ac.uk T: +44 113 812 4730 To view the terms under which

Re: [PHP] php.ini setting

2011-10-01 Thread Mike Mackintosh
On Oct 1, 2011, at 2:04 PM, Ashley Sheridan wrote: On Sat, 2011-10-01 at 12:55 -0400, Stephen wrote: On 11-10-01 11:57 AM, Jim Giner wrote: I'm trying to set magic quotes Off as my reading tells me that it's not good to have it defaulted to On.

Re: [PHP] Variable question

2011-10-01 Thread Mike Mackintosh
On Oct 1, 2011, at 1:59 PM, Ron Piggott wrote: If $correct_answer has a value of 3 what is the correct syntax needed to use echo to display the value of $trivia_answer_3? I know this is incorrect, but along the lines of what I am wanting to do: echo $trivia_answer_$correct_answer;

[PHP] New Service - Short URL Unshortener

2011-09-25 Thread Mike Mackintosh
type of deal. Feedback would be appreciated. Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

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

2011-09-22 Thread Mike Hansen
Does anyone know of a site that has an online test of PHP skills? I'd like to review my PHP knowledge. I've already run across this site: http://vladalexa.com/scripts/php/test/test_php_skill.html Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

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

2011-09-22 Thread Mike Hansen
On 9/22/2011 1:11 PM, George Langley wrote: On 2011-09-22, at 11:53 AM, Mike Hansen wrote: Does anyone know of a site that has an online test of PHP skills? I'd like to review my PHP knowledge. I've already run across this site: http://vladalexa.com/scripts/php/test/test_php_skill.html

Re: [PHP] dev to production server

2011-09-07 Thread Mike Mackintosh
On Sep 7, 2011, at 0:24, Chris Stinemetz chrisstinem...@gmail.com wrote: Does anyone have a procedure or know of any tutorials that explain how to take a mac/apache/php/mysql dev environment and converting it to production environment? Basically I want to host my own web site on my local

Re: [PHP] Dealing with multiple form submissions

2011-08-25 Thread Mike Mackintosh
On Aug 25, 2011, at 5:01, John Black s...@network-technologies.org wrote: On 24.08.2011 21:38, Mike Mackintosh wrote: On Aug 24, 2011, at 11:52, John Blacks...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form

Re: [PHP] Dealing with multiple form submissions

2011-08-24 Thread Mike Mackintosh
On Aug 24, 2011, at 11:52, John Black s...@network-technologies.org wrote: On 08/24/2011 03:04 AM, Jason Pruim wrote: Wondering what everyone does to prevent multiple form submissions? My form is simply getting emailed to my email, and it redirects to a success page when submitted...

Re: [PHP] Dealing with multiple form submissions

2011-08-23 Thread Mike Mackintosh
://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php Cookies are always a great start! On success, set a cookie, and if they access the form and cookie is set, redirect automatically to the thank you page. Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

RE: [PHP] form validation

2011-08-14 Thread Ford, Mike
'])) { // Wasn't set } ? The last part of that test is redundant, since if $_POST['market'] is NULL isset($_POST['market'] will be FALSE. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland

Re: [PHP] Best editor?

2011-08-03 Thread Mike Hansen
On 8/3/2011 7:22 AM, Matty Sarro wrote: Hey everyone, I am a super newbie just beginning to learn PHP. Awhile ago, I had used aptana for dabbling with php and was amazed to find out that it had a built in php interpreter so I could do some minor testing without having to upload everything to a

RE: Re: [PHP] pathinfo function

2011-07-27 Thread Ford, Mike
more explicitly. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f...@leedsmet.ac.uk T: +44 113 812 4730 To view the terms

Re: [PHP] A Question On Web Graphics

2011-07-12 Thread Mike Mackintosh
On Jul 12, 2011, at 3:10 PM, Thomas Dineen wrote: Gentle People: Sorry if this appears off topic but I am not sure where to post the question. Please do not get mad, just recommend a better venue! Currently I am quite experienced with C and learning C++ but I have never written

RE: [PHP] Top Posting

2011-07-06 Thread Ford, Mike
Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Portland PD507, City Campus, Leeds Metropolitan University, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f...@leedsmet.ac.uk T: +44 113 812 4730 To view the terms under which

Re: [PHP] Re: Top Posting

2011-07-05 Thread Mike Mackintosh
On Jul 5, 2011, at 12:06, Stuart Dallas stu...@3ft9.com wrote: On Tue, Jul 5, 2011 at 4:48 PM, Jim Giner jim.gi...@albanyhandball.comwrote: Stuart Dallas stu...@3ft9.com wrote in message If you're looking for a sane reason why Microsoft software is popular in the business world you're

RE: [PHP] header function odd behavior

2011-06-28 Thread Ford, Mike
changed at any point. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, Portland PD507, City Campus, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f...@leedsmet.ac.uk T: +44 113 812 4730 To view

RE: [PHP] Doctrine madness!

2011-06-20 Thread Ford, Mike
as the underlying PHP functionality seems to work reasonably well. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, 507 Portland Building, City Campus, Portland Way, LEEDS,  LS1 3HE,  United Kingdom E: m.f

Re: [PHP] iPhone sadness WOT

2011-05-31 Thread Mike Mackintosh
Thanks :P Sent from my iPhone On May 31, 2011, at 9:54, Jay Blanchard jblanch...@pocket.com wrote: [snip] I beg to differ - the sarcastic remarks have been here since day one. Yeah *SHSH* What was he thinking?! ;) [/snip] I know huh? Whatevs. I added something to the

RE: [PHP] A Review Request

2011-05-23 Thread Ford, Mike
equal'), \n; echo strcmp('different', 'unequal'), \n; echo strcmp('b', 'a'), br /\n; Result: 13 -17 1 The description of the function merely says that the result is 0, 0 or 0 -- it makes no promises about the actual value when it is non-zero. Cheers! Mike -- Mike Ford

RE: [PHP] strcmp()?

2011-05-23 Thread Ford, Mike
-Original Message- From: Joshua Kehn [mailto:josh.k...@gmail.com] Sent: 23 May 2011 13:04 On May 23, 2011, at 8:00 AM, tedd wrote: At 8:13 AM + 5/23/11, Ford, Mike wrote: echo strcmp('These are nearly equal', 'These are almost equal'), \n; echo strcmp('different

RE: [PHP] strcmp()?

2011-05-23 Thread Ford, Mike
an incidentally at the end. We have a pretty hot disability and dyslexia unit here who don't shrink from telling me what's good and what's bad about our website! And, just for the record re the strcmp() debate, I'm on PHP 5.2.5, SunOS 5.10. Cheers! Mike -- Mike Ford, Electronic Information Developer

RE: [PHP] Warning: session_start()

2011-05-19 Thread Ford, Mike
threatened to ruin my carefully crafted CSS layouts!) Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom Email: m.f...@leedsmet.ac.uk Tel: +44 113 812 4730

Re: [PHP] Friday Preview

2011-05-17 Thread Mike Mackintosh
Great Idea, and I cant wait! On May 17, 2011, at 8:28 PM, Daniel Brown wrote: Hey, folks; To try to boost a bit of creative thinking and increase list traffic a bit, let's reach back into the past this Friday and bring back an oldie-but-goodie: PHP Brainteasers The

Re: [PHP] Error Reporting/Display Errors Issues?

2011-05-10 Thread Mike Mackintosh
. Richard L. Buskirk -Original Message- From: Mike Mackintosh [mailto:mike.mackint...@angrystatic.com] Sent: Monday, May 09, 2011 10:34 PM To: php-general@lists.php.net Subject: [PHP] Error Reporting/Display Errors Issues? Anyone else notice PHP throwing Warning and Notices even

[PHP] Error Reporting/Display Errors Issues?

2011-05-09 Thread Mike Mackintosh
= 0 = 0 But i continue to receive Strict/Notice and Warnings in code that i wish to be hidden. Any suggestions? Thanks, Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Installing on a Mac: include_path issues

2011-05-05 Thread Mike Mackintosh
Run phpinfo() or php -I and see if the PHP.ini file is being loaded. Sent from my iPhone On May 5, 2011, at 5:40, Richard Quadling rquadl...@gmail.com wrote: On 5 May 2011 05:51, David Robley robl...@aapt.net.au wrote: Ken Kixmoeller wrote: Hey, folks -- -- I am switching over my

Re: [PHP] Re: Installing on a Mac: include_path issues

2011-05-05 Thread Mike Mackintosh
What are the permissions on the include directory? Sent from my iPhone On May 5, 2011, at 9:42, Ken Kixmoeller phph...@comcast.net wrote: On Thu, May 5, 2011 at 5:59 AM, Mike Mackintosh mike.mackint...@angrystatic.com wrote: Run phpinfo() or php -I and see if the PHP.ini file is being loaded

Re: [PHP] sem_get invalid argument for existing semaphore

2011-05-04 Thread Mike Mackintosh
Are you using the whole hex key or removing the 0x prefix? Sent from my iPhone On May 4, 2011, at 8:13, Jeremy Greene jer...@zeevee.com wrote: Hi, I am trying to do a sem_get on a semaphore that has already been created by a c++ program. But I'm getting this warning: PHP

RE: [PHP] Ranges for case statement and a WTF moment.

2011-04-07 Thread Ford, Mike
if one of them did, but failed to realise that .19 would be coerced to 0.19. Just shows how you really have to think things through, sometimes! Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus

RE: [PHP] Closing Session

2011-04-01 Thread Ford, Mike
), the suggestion of using sub-arrays per application sounds good to me. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom Email: m.f...@leedsmet.ac.uk Tel

RE: [PHP] Failure in bitwise operations moving from 5.2.x to 5.3.x

2011-03-15 Thread Ford, Mike
('255.255.255.255') (or my_bindec('')!!!). Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom Email: m.f...@leedsmet.ac.uk

RE: [PHP] Issue with Quick Email validation

2011-03-10 Thread Ford, Mike
Apart form the obvious error already solved, in this situation I would not be forcing my users to type in an element that only has one option -- I would display the form box with the text @company.com immediately after it, and only expect the unique part to be entered. Cheers! Mike -- Mike

RE: [PHP] String length output in php-generated response

2011-02-07 Thread Ford, Mike
and totally harmless. Read about it here: http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6 Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE

RE: [PHP] override built-in mail()

2011-02-04 Thread Hansen, Mike
-Original Message- From: Thijs Lensselink [mailto:d...@lenss.nl] Sent: Friday, February 04, 2011 12:48 PM To: php-general@lists.php.net Subject: Re: [PHP] override built-in mail() On 02/04/2011 08:44 PM, Thijs Lensselink wrote: On 02/04/2011 08:38 PM, Steve Staples wrote:

RE: [PHP] Code formatter

2011-02-02 Thread Hansen, Mike
-Original Message- From: ken.gu...@gmail.com [mailto:ken.gu...@gmail.com] On Behalf Of Ken Guest Sent: Monday, January 31, 2011 3:26 PM To: Hansen, Mike Cc: php-general@lists.php.net Subject: Re: [PHP] Code formatter On Mon, Jan 31, 2011 at 8:27 PM, Hansen, Mike

[PHP] Code formatter

2011-01-31 Thread Hansen, Mike
I've got an application that I'm fixing up and I'd like to run it through a code formatter. Is there something like Perl Tidy for PHP? If so, what are you experiences with it. No prob running it on the command line. It'd be great if it followed the PEAR coding standards. Thx -- PHP General

RE: [PHP] Re: Code formatter

2011-01-31 Thread Hansen, Mike
-Original Message- From: Jonesy [mailto:gm...@jonz.net] Sent: Monday, January 31, 2011 2:25 PM To: php-general@lists.php.net Subject: [PHP] Re: Code formatter On Mon, 31 Jan 2011 13:27:42 -0700, Hansen, Mike wrote: I've got an application that I'm fixing up and I'd like

[PHP] Re: [PHP-DEV] Re: [PHP] [security] PHP has DoS vuln with large decimal points

2011-01-16 Thread Mike Robinson
or already known Is this not it? http://bugs.php.net/53632 Best Regards Mike Robinson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] PHP Docs update

2011-01-06 Thread Ford, Mike
like it'll be pretty spiffy once all ironed out, though! Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom Email: m.f...@leedsmet.ac.uk Tel: +44 113

Re: [PHP] Re: Flexible application plugin architecture, is this possible?

2011-01-04 Thread Mike
Colin Guthrie gm...@colin.guthr.ie wrote: 'Twas brillig, and Mike at 03/01/11 23:37 did gyre and gimble: I'm trying to design a powerful plugin system that doesn't require any (or extremely little) modification to my existing large code base. Hook based systems unfortunately don't seem to meet

[PHP] Flexible application plugin architecture, is this possible?

2011-01-03 Thread Mike
to automatically load alternate classes, or have a class dynamically overload itself during runtime? -- Mike -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Why the PEAR hate?

2010-11-16 Thread Hansen, Mike
http://www.reddit.com/r/PHP/comments/e6zs1/how_many_of_you_use_pear_in_your_projects/ I'm still pretty new to PHP. Why the hate for PEAR? I've used a couple of PEAR modules without any issues. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

FW: [PHP] Why the PEAR hate?

2010-11-16 Thread Hansen, Mike
-Original Message- From: Hansen, Mike Sent: Tuesday, November 16, 2010 10:24 AM To: 'Daniel Brown' Subject: RE: [PHP] Why the PEAR hate? -Original Message- From: paras...@gmail.com [mailto:paras...@gmail.com] On Behalf Of Daniel Brown Some of the PEAR stuff

RE: [PHP] How do I convert the string E_ALL ~E_NOTICE to the decimal equivalent 6135?

2010-11-12 Thread Ford, Mike
-Original Message- From: Daevid Vincent [mailto:dae...@daevid.com] Sent: 11 November 2010 22:23 To: php-general@lists.php.net -Original Message- From: Ford, Mike [mailto:m.f...@leedsmet.ac.uk] Sent: Thursday, November 11, 2010 12:58 AM To: php-general@lists.php.net

RE: [PHP] How do I convert the string E_ALL ~E_NOTICE to the decimal equivalent 6135?

2010-11-11 Thread Ford, Mike
a string (of course) That's odd -- parse_ini_file() should definitely translate those constants! It certainly works on my v5.2.5 installation. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus

[PHP] Template engines

2010-11-08 Thread Hansen, Mike
I really like the idea of using a templating engine. Which one do you use? Why? For those that don't use templating engines, why don't you use them? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: My truth comes out [1]

2010-10-22 Thread Ford, Mike
-Original Message- From: Jason [mailto:networkad...@emarket2.com] Sent: 21 October 2010 11:45 What about something simple and readable like: ($string==true) ? true : false; ... and wasteful. The above gives exactly the same result as ($string==true) Cheers! Mike -- Mike

RE: [PHP] Possible foreach bug; seeking advice to isolate the problem

2010-10-22 Thread Ford, Mike
) immediately before the foreach statement -- this will break the reference (without destroying anything but $obj!) and make the foreach behave exactly as you want. Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City

RE: [PHP] Formatting an ECHO statement.

2010-10-18 Thread Ford, Mike
/ works perfectly well and prints the value. What if I want to, now, italicize the value of $other with the above syntax? How do I achieve it? echo 'Other Comments:i' .$other. '/ibr/ Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds

RE: [PHP] RegExp question: how to add a number?

2010-10-15 Thread Ford, Mike
+)\:](.+?)$/eusi, 're['.(\\1+1).']:\\2', $f['Subject']); Cheers! Mike -- Mike Ford, Electronic Information Developer, Libraries and Learning Innovation, Leeds Metropolitan University, C507 City Campus, Woodhouse Lane, LEEDS,  LS1 3HE,  United Kingdom Email: m.f...@leedsmet.ac.uk Tel: +44 113

[PHP] Eclipse, Komodo, Netbeans, Zend Studio, PHP Storm, other?

2010-10-13 Thread Hansen, Mike
I'm about to do a lot of work on an existing code base and I think I'd like to try an IDE. I currently use VIM for most editing. What IDE are you using? What do you like about the one you are using? Which ones have you tried? Mike -- PHP General Mailing List (http://www.php.net

RE: [PHP] Re: Continuance of the struggle (trying to understand)

2010-10-05 Thread Ford, Mike
-- so why would you want to paste the code anywhere else? I think your concepts are a little skew-whiff, and you need to explain what it is you think you're trying to do in more detail so that we can spot where it is that your understanding is wrong. Cheers! Mike -- Mike Ford, Electronic

  1   2   3   4   5   6   7   8   9   10   >