Re: [PHP] Ini files for CLI only on non Win32 platform

2013-09-13 Thread Kevin Kinsey
Configuration File: /usr/local/etc/php-cli.ini Scan for additional .ini files in: /usr/local/etc/php Additional .ini files parsed: /usr/local/etc/php/extensions.ini I apologize if I'm missing the point or am obtuse or irrelevant; I don't play with the INI files very often. Kevin Kinsey

Re: [PHP] Finally....

2013-08-17 Thread Kevin Kinsey
| grep skynet # No more of those Your e-mail concerning our products and services autoreplies from the Belgacom Webteam. Sorry it took me this long to realize it and get around to it. Happy Friday. Aunt AMaViS says, What autoreplies? ;) ;) Kevin Kinsey -- PHP General Mailing List (http

[PHP] Compiler for the PHP code

2013-03-19 Thread Kevin Peterson
My webcode written in PHP and it is running in the interpreted way. My problem is it is not giving the desired performance so want to try the compiler if any. Please suggest if we have any compiler option available for the PHP code and more important is this new option.

Re: [PHP] Type of a variable in PHP

2013-03-16 Thread Kevin Peterson
Thanks Nora On Fri, Mar 15, 2013 at 4:34 PM, Sebastian Krebs krebs@gmail.comwrote: 2013/3/15 Kevin Peterson qh.res...@gmail.com Have two questions - 1. How to find type of a variable in PHP. gettype(), or one of the is_*()-functions. But for me more interesting for me: Why do you

[PHP] Type of a variable in PHP

2013-03-15 Thread Kevin Peterson
Have two questions - 1. How to find type of a variable in PHP. 2. How to find the type of an array in PHP. Please help.

[PHP] mysql custom global defined variable

2013-03-13 Thread Kevin Peterson
In my database design, I tend to store some variable that is meant to be acting as a ROLE or TYPE as SMALLINT. For example : CREATE TABLE `house` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` smallint(11) NOT NULL, ) And in php, I do define('HOUSE_SMALL_TYPE',

Re: [PHP] variable placeholders in a text file

2013-01-04 Thread Kevin Kinsey
)); = This, of course, doesn't negate a good templating system* ... but it's handy to know and you'll probably use it sooner or later. Kevin Kinsey P.S. *assuming that's not an oxymoron! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Turning a string into a condition

2012-02-16 Thread Kevin Kinsey
() on it ... but that might be a tad too broad as well. HTH, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Need Part-time Coder

2011-12-28 Thread Kevin Kinsey
You'll want your PHP code to be proprietary and encoded, of course. Run this script, save the output, and then run *that*. ?php $helloworld = 'Hello World'; $n = 30; for($i=0; $i$n; $i++) {$helloworld = base64_encode($helloworld); } echo '?php\n$h='; echo chunk_split($helloworld); echo ';';

[PHP] Am I missing something about escapeshellarg

2011-03-07 Thread Kevin Chadwick
I just posted the following at http://stackoverflow.com/questions/3481880/what-php-extensions-are-preferred-and-what-about-security-preferences/5223539#5223539; Am I missing anything or are all these guides and hosts either not disabling enough functions or disabling security aids to give

Re: [PHP] Is it possible to install PHP on IIS?

2010-11-16 Thread Kevin Kinsey
Richard Quadling wrote: On 16 November 2010 13:21, Jay Blanchard jblanch...@pocket.com wrote: [snip] Hi Folks, is it possible to install PHP on IIS? If yes, can someone please guide me on how to go about doing it? Thanks [/snip] http://www.wampserver.com/en/ Jay, if that had been

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

2010-11-04 Thread Kevin Kinsey
. Dang! I was just about to send you a list of people to remove! ;-} Paul Lord-a-mercy, yes!!! Daniel, what license for this service? BSD? CC? GPL? :-D Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] form post question

2010-10-28 Thread Kevin Kinsey
Bastien Koert wrote: On Thu, Oct 28, 2010 at 10:12 AM, Jack jacklistm...@gmail.com wrote: I have a form which has the following: ( quick clip ) form id=form1 name=form1 method=post action=http://www.abc.com/processing/process_form.php; onSubmit=return preSubmit(); label

Re: [PHP] PHP Question

2010-10-28 Thread Kevin Kinsey
a hacker, so this is a HACK: ?php $data=(li pcomment 1/p pcomment 2/p pcomment 3/p /li); $lines=explode(\n,$data); array_shift($lines); array_pop($lines); print_r($lines); ? I'll leave it to the big boys to debate and devise more elegant solutions. Kevin Kinsey -- PHP General Mailing List

Re: [PHP] Array problem

2010-10-27 Thread Kevin Kinsey
Marc Guay wrote: As Nicholas pointed out, the extra underscore in the key is the issue. That's way too easy a fix. I think he should check to make sure his version of PHP was compiled with the right extensions and that the browser isn't doing something unpredictably bizarre when submitting

Re: [PHP] Re: 1984 (Big Brother)

2010-09-14 Thread Kevin Kinsey
. I'm pretty sure the employees will be your new BFFs. +11. We should ABSOLUTELY copy Scot Adams on this. Wait a minute, maybe Tedd's client IS Scot Adams. Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] exec in different directory where PHP is Installed

2010-05-24 Thread Kevin Kinsey
from \\xxx.xxx.xxx.xxx\scriptdir\ to c:\scriptdir\ then it's work !! everything work good EXCEPT the @EXEC command ... Safe mode in PHP is OFF ... Hello, Can you show us the script? The first thing I'd do is call is_file(\\xxx.xxx.xxx.xxx\scriptdir\foo.php) ... are you doing that? Kevin

Re: [PHP] Question about creating php files from a form

2010-05-14 Thread Kevin
Paul M Foster wrote: On Thu, May 13, 2010 at 11:53:54PM -0400, Kevin wrote: snip /On a side note: I am having some issues with connecting to a SQLite database right now ... I'm getting the following error Fatal Error: 'sqlite_open' is an unknown function But I'm putting that on the side

[PHP] Question about creating php files from a form

2010-05-13 Thread Kevin
, and thank you all for your time... - - Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Question about creating php files from a form

2010-05-13 Thread Kevin
Ashley Sheridan wrote: On Thu, 2010-05-13 at 23:07 -0400, Kevin wrote: Hello All, I am trying to figure out how to create files when a user submits a form ... I have seen something about '*fopen*' , is that the direction I should be going? Here is what I am trying to accomplish: I am

Re: [PHP] PHP Application Structre

2010-05-12 Thread Kevin Kinsey
Peter Lind wrote: On 12 May 2010 07:10, Kevin Kinsey k...@daleco.biz wrote: Ashley Sheridan wrote: On Tue, 2010-05-11 at 08:48 +0530, chetan rane wrote: Hi all, mod rewrite was actually inrduced to have search engne frendly urls. hnce if you want a seo site then you have to use options 1 2

Re: [PHP] PHP Application Structre

2010-05-11 Thread Kevin Kinsey
strings, but it'd be a little silly to think their owners didn't realize this and left things exactly the way they were back in 2002 ... wouldn't it? My $0.02, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's your game? (X-PHP)

2010-04-26 Thread Kevin Kinsey
Richard Quadling wrote: On 25 April 2010 14:16, tedd t...@sperling.com wrote: What's your game? Ooh, do we *have* to tell? I've got interest in the AOE stuff, but haven't played in a while. Haven't purchased AOE3. If I'm *really* bored, I've got freecell.exe running on every O.S. I run

Re: [PHP] PHP not being read?

2010-04-25 Thread Kevin Kinsey
like: {/usr/local}/etc/apache/httpd.conf HTH, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: replying to list (I give up)

2010-04-23 Thread Kevin Kinsey
. Someone (possibly even me) renamed most of the desktop icons ... OE's shortcut is Outluck Depress. :-) Kevin D. Kinsey FWIW: Lists that set reply to sender: All FreeBSD.org lists Lists that set reply to group: All Yahoo Groups lists My prefs: I couldn't care less, really

Re: [PHP] Mail Function Using PEAR Issues

2010-04-18 Thread Kevin Kinsey
Karl DeSaulniers wrote: Hey Alice, Again, try throwing the MIME in. $headers = 'MIME-Version: 1.0' . \r\n; $headers .= 'Content-type: text/html; charset=utf-8' . \r\n; Also: $headers .= 'Errors-to: myworkingemailaddr...@foo.com' . \r\n; Which I suggested on your previous thread. Also, I

Re: [PHP] Mail Function Using PEAR Issues

2010-04-18 Thread Kevin Kinsey
Alice Wei wrote: Date: Sun, 18 Apr 2010 21:02:29 -0500 From: k...@daleco.biz To: aj...@alumni.iu.edu CC: k...@designdrumm.com; php-general@lists.php.net Subject: Re: [PHP] Mail Function Using PEAR Issues Karl DeSaulniers wrote: Hey Alice, Again, try throwing the MIME in. $headers =

Re: [PHP] Saving form data into session before leaving a page

2010-04-13 Thread Kevin Kinsey
Paul M Foster wrote: Sorry, I just get cranky with people who won't follow the rules. ?php $pauls_post++; ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Saving form data into session before leaving a page

2010-04-13 Thread Kevin Kinsey
Dan Joseph wrote: On Tue, Apr 13, 2010 at 12:40 PM, Robert Cummings rob...@interjinn.comwrote I had a pair-a-dimes one time. Unfortunately I was a nickel short of a quarter to put in the slot. But the question is... were they outside the box? Nah, the question is, since the slot was

Re: [PHP] Mail Function Problem

2010-04-12 Thread Kevin Kinsey
together with the PHP IMAP functions, or even sockets, but you're getting into a big lotta work for what seems a small thing. Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail Function Problem

2010-04-12 Thread Kevin Kinsey
I'll do what I shoulda mentioned before and include the IANAE disclaimer on all things PEAR, many things PHP, and some things SMTP. Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail Function Problem

2010-04-11 Thread Kevin Kinsey
Alice Wei wrote: Hi, I have an issue here where I see no PHP errors on my mail function usage, and yet I am not getting the mail in the desired account. Here is what I have for my PHP code: $headers = From: aj...@alumni.iu.edu; $to = aj...@alumni.iu.edu ; $subject = Comments Regarding My

Re: [PHP] Greate day for you,

2010-04-07 Thread Kevin Kinsey
Nilesh Govindarajan wrote: On 04/07/10 21:41, Chris G wrote: http://sites.google.com/site/vfgbyuhoi6/kewe2w snip Is there no spam filter at lists.php.net ? Does your filter catch 101% of all of it? That's the only one I've seen in a Long Time(tm). Just asking :-) Kevin Kinsey

Re: [PHP] Re: Logical reason for strtotime('east') and strtotime('west') returning valid results?

2010-04-06 Thread Kevin Kinsey
Colin Guthrie wrote: 'Twas brillig, and Kevin Kinsey at 05/04/10 19:15 did gyre and gimble: Nonetheless, I'm suspecting the programmers had something like this in mind. Yeah I guess that's why it interprets these terms. Good thinking :) Isn't strtotime() based on some GNU utility? Yeah

Re: [PHP] PHP (32 bit) on IIS7.5 and MySQL 5.1.45 (64 bit) - established connection failed because connected host has failed to respond

2010-04-03 Thread Kevin Kinsey
SumarliĆ°i Einar DaĆ°ason wrote: I have setup PHP (32 bit) on IIS7.5 and MySQL 5.1.45 (64 bit) with success. phpinfo() shows the MySQL extension loaded, but when I try to use mysql_connect( $host, $user, $password ) in a PHP script I get following error: PHP Warning: mysql_connect() [a

Re: [PHP] How to know which PHP is used by Apache

2010-04-01 Thread Kevin Kinsey
: on RH I think it's rpm, dpkg on Debian, urpmf on Mandriva, etc. If you have two installations of the same version, $deity help you :-) HTH, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to know which PHP is used by Apache

2010-04-01 Thread Kevin Kinsey
, etc. ... a PHP installation, whether or not your have the CLI binary is not that important, although I always do since I like to run system scripts in PHP via cron, etc. Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] File encryption under PHP

2010-04-01 Thread Kevin Kinsey
Paul M Foster wrote: Folks: If I wanted to encrypt a file in PHP and then write it out to disk (one-way encryption, requiring a password), what PHP built-ins might you recommend to encrypt the contents of the file before writing it out to disk? Paul Here's a very generic mcrypt example.

Re: [PHP] open source bookshop

2010-03-17 Thread Kevin Kinsey
on security best procedures and changes since PHP 4 As for the rest of the discussion, a bookshop could easily be most of the standard cart-type apps. Since they have only a few characteristics, it's much easier than, for example, retail clothing ;-) HTH, Kevin Kinsey -- PHP General Mailing

Re: [PHP] PHP Sessions

2010-03-12 Thread Kevin Kinsey
Martine Osias wrote: Hi: I need to store variables to send then between pages. I don't need the variables in a database so I try to send them with sessions. The variables don't seem to be there when I try to get them. What could be the problem. Here are the pages where I store and retrieve

Re: [PHP] PHP Sessions

2010-03-12 Thread Kevin Kinsey
Forgot to mention, you could check into the privacy vs. server settings by doing: session_start(); echo session_id(); on both pages. If they're different, then this is the problem. KDK -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] PHP MySQL Insert Statements

2010-03-11 Thread Kevin Kinsey
. Martine Should be trivial to find out what's happening. Something like: $success=mysql_query($insert_statement) or die(Uh-oh, mysql said:.mysql.error()); HTH, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] EHLO error 554: what can it be?

2010-03-09 Thread Kevin Kinsey
Thilo Klein wrote: Kevin Kinsey schrieb: Andre Polykanine wrote: Hello everyone, I'm writing a class to send mail via an SMTP server with authorization. Everything seems to work but I get an EHLO error: 554 SMTP synchronization error Where should I look to avoid this? Thanks! Be polite

Re: [PHP] EHLO error 554: what can it be?

2010-03-08 Thread Kevin Kinsey
server's greeting before you send HELO/EHLO. ;-) HTH, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Mail Function In PHP

2010-03-06 Thread Kevin Kinsey
, Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Parse a string containing name and email

2010-03-06 Thread Kevin Kinsey
email address is j...@foo.com Throw in a foreach() and some data writes or w/e, and you're done. Kevin Kinsey -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to get the 'return type' of a function?

2010-02-23 Thread Kevin Kinsey
Ashley Sheridan wrote: is_quantum() is pretty useful as well, if you want to see if it's sort of there and not at the same time. Probably turns into a cat in a box at some point too, everything quantum has cats in... Thanks, Ash So, should we add to the list: is_schrodingers_cat_alive() ??

Re: [PHP] PHP6 Stable Release Schedule

2009-09-05 Thread Kevin Waterson
On Sat, 2009-09-05 at 16:11 +0100, Richard Heyes wrote: Hi (again), ?php error_reporting(E_STRICT); ? This might work better: ?php error_reporting(E_ALL | E_STRICT); ? E_STRICT is now part of E_ALL Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] templating engine options

2009-05-23 Thread Kevin Waterson
be a fool not to at least consider it! can't be part of a framework, (or if it is easily extracted with no framework dependencies), and not xslt (love xslt, but not many designers do!). eZ Components Use just the template component http://ezcomponents.org Kevin http://phpro.org

Re: [PHP] ImageMagick

2009-05-01 Thread Kevin Waterson
to jpeg, resize for thumb and export to jpeg again. http://phpro.org/tutorials/Imagick.html Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Eclipse, PDT plugins for hosting, scaling and managing PHP apps.

2009-04-30 Thread Kevin Hakman
re: Eclipse, PDT plugins for hosting, scaling and managing PHP apps. Aptana has released a new suite of tools for PHP developers that extends the popular Eclipse PDT environment. The plugin for Eclipse, called Aptana Cloud Connect, lets you get all the benefits of scalable, on-demand PHP

Re: [PHP] Anyone fancy getting paid to improve my PHP in London?

2009-03-14 Thread Kevin Kinsey
; chmod($wife,0600); while ($n$days) { fputs($rob,$couch); sleep(28800); } } ? Good luck, buddy ;-) Kevin Kinsey PS why are all the trolls in this thread named some variant of Kenzie? -- Iowa State -- the high school after high school! -- Crow T. Robot -- PHP

Re: [PHP] Anyone fancy getting paid to improve my PHP in London?

2009-03-13 Thread Kevin Kinsey
of the ladies... she's in on it!!! Warning: constant ladies defined incorrectly in 1236973618.10169.75.ca...@localhost line 7 /troll :-D Kevin Kinsey -- Even if you do learn to speak correct English, whom are you going to speak it to? -- Clarence Darrow -- PHP General Mailing

Re: [PHP] paging

2009-02-09 Thread Kevin Waterson
On Tue, 2009-02-10 at 03:26 +, Jim Douglas wrote: http://phpro.org/tutorials/Pagination-with-PHP-and-PDO.html Does anyone have a link to any examples of paging? Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Re: frameworks

2009-01-30 Thread Kevin Waterson
the makers of PHP and is supposed to be a mature framework and ready for enterprise level applications. What a joke. but, just my $0.02 Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] New PHP User with a simple question

2009-01-25 Thread Kevin Waterson
Sorry, I am also new to the etiquette of these mail lists. Hope this will get you started, http://www.phpro.org/tutorials/Introduction-to-PHP-templating.html Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] What's the best way to rotate, resize, and thumbnail?

2009-01-17 Thread Kevin Waterson
-On-Image-Type.html http://www.phpro.org/examples/Imagick-Thumbnail-From-Center.html but _do_ checkout imagick it has all the good toys http://www.phpro.org/tutorials/Imagick.html Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Parsing HTML href-Attribute

2009-01-16 Thread Kevin Waterson
a document and try to get it into xhtml and then use simplexml. I wonder how well this would work with [crappy] HTML input. $dom-loadHTML($html) Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Parsing HTML href-Attribute

2009-01-16 Thread Kevin Waterson
This one time, at band camp, Eric Butera eric.but...@gmail.com wrote: You could also use DOM for this. http://us2.php.net/manual/en/domdocument.getelementsbytagname.php http://www.phpro.org/examples/Get-Links-With-DOM.html Kevin -- PHP General Mailing List (http://www.php.net

Re: [PHP] Zend (or other) Framework...where to start?

2009-01-15 Thread Kevin Waterson
. The speed of development comes as you become more familiar with the environment you are developing in. Try any of the frameworks, or write you own, just avoid Zend. Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] print a to z

2009-01-15 Thread Kevin Waterson
This one time, at band camp, Leon du Plessis l...@dsgnit.com wrote: I used that notation before, and it did not work 100%. Adapt as follows: for ($i = 'a'; $i = 'z'; $i++) if ($i == aa) break; else echo $i; foreach(range('a', 'z') as $letter ) { echo $letter; } Kevin -- PHP

RE: [PHP] how does one bind a gui representation and a container object.

2009-01-08 Thread McClusky, Kevin - Sacramento
As an ammendum to the prior response, you may want to look into using AJAX with a streaming connection to the server. If you have a small number of users, this works nicely (I have used it in production systems before). http://ajaxpatterns.org/HTTP_Streaming#Solution If there are a large number

RE: [PHP] how does one bind a gui representation and a container object.

2009-01-08 Thread McClusky, Kevin - Sacramento
Reading your original request a little more carefully, it appears you're really looking for a way to immediately update the database when someone changes a value in an HTML form. Ajax is necessary. Make an ajax call triggered by a change in the table's data, which sends the change as GET or POST

Re: [PHP] RSS Feed on my PHP site

2009-01-06 Thread Kevin Waterson
enjoy Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Image Resizing

2008-12-21 Thread Kevin Waterson
/Imagick.html#4 Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] First PHP program

2008-12-13 Thread Kevin Waterson
shall be thankful. have a look at phpro.org and for an editor, well vi(m) of course ;) set yourself a project to make something, start coding, and ask lots of questions. Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dates and Mysql

2008-12-10 Thread Kevin Waterson
/Introduction-to-PHP-and-MySQL.html#45 Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] A MySQL Question

2008-12-07 Thread Kevin Waterson
it Sequel or anything other than My S. Q. L MY ESS KEW ELL Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Job opportunity in Denver, CO - Jr. PHP developer needed

2008-12-05 Thread Kevin Waterson
... Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] store class zithin session

2008-11-20 Thread Kevin Waterson
This one time, at band camp, Alain Roger [EMAIL PROTECTED] wrote: Hi, i have a class and i would like to store it zithin session. i was thinking to use serialize/unserialize but it does not work. http://www.phpro.org/tutorials/Introduction-To-PHP-Sessions.html#8 Kevin -- PHP General

Re: [PHP] Days until Easter and Christmas

2008-11-18 Thread Kevin Waterson
-Equinox.html Any improvements welcomed Kind regards Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] question about google maps

2008-11-09 Thread Kevin Waterson
and some docs at http://www.phpro.org/classes/Phproogle-Docs.html example code can be found at http://www.phpro.org/examples/Google-Maps-With-PHP-And-Phproogle.html Kevin -- This email message (and any accompanying file attachments) may contain confidential or privileged information

[PHP] ANN: BrowserHawk for PHP

2008-09-22 Thread Kevin E
looking forward to the feedback from the PHP community on how you like BHTG so please give it a try and let us know! Thanks, Kevin Product Engineer cyScape, Inc, www.cyscape.com Makers of BrowserHawk

Re: [PHP] ASCII Captcha

2008-09-14 Thread Kevin Waterson
? they are denied access? Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Recursive Iteration over a collection of objects

2008-09-08 Thread Kevin Waterson
This one time, at band camp, David Lidstone [EMAIL PROTECTED] wrote: which with hindsight is completely illogical! I also wasn't aware of the constants. Is there a simple tutorial / docs you know of for SPL? http://www.phpro.org/tutorials/Introduction-to-SPL.html Kevin -- PHP General

Re: [PHP] Regex for email validation

2008-08-27 Thread Kevin Waterson
, but they all fail at some point. The best you can do is cater to most _sane_ addresses. And when the domain name space is opened up, well, you will back to strpos() and @ Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-21 Thread Kevin Waterson
poorly thought out arguments is baseless. Lastly, you forgot to send in your dues to the list to ensure unmolested posting of ridiculous statements. Please return to your rock and draw up another strategy to offend the list. See what I mean? Kevin -- PHP General Mailing List (http

Re: [PHP] Semi-ADVERT, not really spam, sorry for it

2008-08-20 Thread Kevin Waterson
Kind regards Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Using Ajax to populate a drop-down list

2008-08-08 Thread Kevin Waterson
This one time, at band camp, Don [EMAIL PROTECTED] wrote: Does anyone have an example of how to do this? http://phpro.org/tutorials/Creating-Dropdowns-with-PHP-and-Xajax.html enjoy, Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Why PHP4?

2008-07-30 Thread Kevin Waterson
This one time, at band camp, Richard Heyes [EMAIL PROTECTED] wrote: I'm interested - why are people still using PHP4? It's been over 4 years (I think) - plenty of time to upgrade to five. I asked that question and was called a troll... Kevin -- PHP General Mailing List (http://www.php.net

Re: [PHP] Web2.0 style tags - where to start?

2008-07-30 Thread Kevin Waterson
This one time, at band camp, Paul Jinks [EMAIL PROTECTED] wrote: Does anyone know of any good resources on building a tagging system? The video for now will be held on a normal LAMP machine as will everything else. Tagging... http://phpro.org/tutorials/Tagging-With-PHP-And-MySQL.html Kevin

Re: [PHP] OpenID

2008-07-18 Thread Kevin Waterson
and mediation, which has so far cost me over $1k. Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] OpenID

2008-07-17 Thread Kevin Waterson
. Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] IPv6 validation

2008-07-13 Thread Kevin Waterson
This one time, at band camp, Per Jessen [EMAIL PROTECTED] wrote: No, it's a simple matter of need. People also run apache 1.x, mysql 3.x etc. There are still Linux 2.2 and 2.4 systems out there too. 4 years its been, thats incompetence. Kevin -- PHP General Mailing List (http

Re: [PHP] IPv6 validation

2008-07-12 Thread Kevin Waterson
This one time, at band camp, Yeti [EMAIL PROTECTED] wrote: Now i was wondering of what there might be the best way to validate an IPv6 address. from this url.. http://phpro.org/tutorials/Filtering-Data-with-PHP.html#9 ?php /*** an IP address ***/ $ip =

Re: [PHP] IPv6 validation

2008-07-12 Thread Kevin Waterson
or incometence. Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PDO Question. Number of rows returned

2008-07-12 Thread Kevin Waterson
, sizeof/count will get you home Kevin http://phpro.org -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Dynamic dropdown lists (select)

2008-04-06 Thread Kevin Waterson
/tutorials/Creating-Dropdowns-with-PHP-and-Xajax.html It gives you goodness you desire Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] objects stored in sessions

2008-04-06 Thread Kevin Waterson
On Sun, 2008-04-06 at 11:02 -0400, Mark Weaver wrote: So, if I create a user object, set the properties of said user object and store that object in the user session will that object be available throughout the application from the session?

[PHP] MS purchase Yahoo

2008-03-31 Thread Kevin Waterson
Did they finally do it or is April fools com early? http://digg.com/business_finance/Microsoft_Purchase_Yahoo_For_62_Billion K -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MS purchase Yahoo

2008-03-31 Thread Kevin Waterson
On Mon, 2008-03-31 at 17:05 -0700, mike wrote: You are pathetic. Spamming your own fake digg article to your own fake news story and didn't even take the effort to host it on another domain? BWHAHAHAHHAA Thanks, nice reaction, made my day, do you have more? Kev -- PHP General Mailing

[PHP] Using CURLOPT_TIMEOUT_MS correctly?

2008-01-28 Thread Kevin Eppinger
/0.9.7e zlib/1.2.2 Protocols: tftp ftp telnet dict ldap http file https ftps Features: IPv6 Largefile NTLM SSL libz -- Thanks for any help you can provide. -Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] // ?

2007-12-04 Thread Kevin Schmeichel
Here's some unexpected behavior: ?php // ? what? ? This will output what? - I expected no output, as is the case if the inline comment was a /* */ comment. Is this a bug? Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Regex for Advanced search feature

2007-10-19 Thread Kevin Murphy
expressions and can't figure it out. Anyone have a way for me to accomplish this with a regular expression or with another method? -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S. Please note that my e-mail and website address have

[PHP] count vs mysql_num_rows

2007-10-08 Thread Kevin Murphy
]; return $count; OR $query = SELECT id FROM wncci_intranet.iAdmin_users WHERE name = '$name' LIMIT 1; $results = mysql_query($query); $count = mysql_num_rows($results); return $count; Thanks. -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775

Re: [PHP] count vs mysql_num_rows

2007-10-08 Thread Kevin Murphy
need to know how many times something exists, just if it does. -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326

Re: [PHP] Re: strpos error (I'm missing something obvious)

2007-10-02 Thread Kevin Murphy
internal employees some of whom are more computer savvy than others. Thanks all for your help. It seems to be working now. -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S. Please note that my e-mail and website address have changed

[PHP] Secure Image Storage

2007-10-01 Thread Kevin Murphy
. This will return the binary source of the file: print file_get_contents($file_path); but doesn't display the image. Is there any way to have this (or something else) generate the image? -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S

[PHP] strpos error (I'm missing something obvious)

2007-10-01 Thread Kevin Murphy
stupid here, but it doesn't seem to work :-) -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S. Please note that my e-mail and website address have changed from wncc.edu to wnc.edu.

Re: [PHP] strpos error (I'm missing something obvious)

2007-10-01 Thread Kevin Murphy
I fixed this by changing === TRUE to !== FALSE, so I think I am good to go now. But would still like to know why TRUE doesn't work. Thanks. -- Kevin Murphy Webmaster: Information and Marketing Services Western Nevada College www.wnc.edu 775-445-3326 P.S. Please note that my e-mail and website

  1   2   3   4   5   6   7   8   9   10   >