Re: [PHP] How to make sure that the target file to read is not under writing by others?

2009-08-19 Thread Kyle Smith
Nitebirdz wrote: On Wed, Aug 19, 2009 at 11:59:39AM +0100, Ashley Sheridan wrote: No, what you're saying is 'use a log file in order to know when to look at another log file'. What would happen if you tried to access the control log file whilst it was in the process of being written to? Adm

Re: [PHP] PHP as Language

2009-07-24 Thread Kyle Smith
Martin Scotta wrote: Hi all Is there a formal definition for the php language? Where I can found it? I've STW with no results. Not sure if this is what you mean, but PHP stands for "PHP: Hypertext Processor" - Kyle

Re: [PHP] This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-24 Thread Kyle Smith
Jim Lucas wrote: Kyle Smith wrote: Per Jessen wrote: Kyle Smith wrote: Per Jessen wrote: See http://bugs.php.net/?id=48612 "Thank you for taking the time to write to us, but this is not a bug. And RTFM". (RTFM is my interpretation of the rest). And

Re: [PHP] This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-24 Thread Kyle Smith
Per Jessen wrote: Kyle Smith wrote: Per Jessen wrote: See http://bugs.php.net/?id=48612 "Thank you for taking the time to write to us, but this is not a bug. And RTFM". (RTFM is my interpretation of the rest). And that only took a little more than a month. Thanks very

Re: [PHP] This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-24 Thread Kyle Smith
Per Jessen wrote: See http://bugs.php.net/?id=48612 "Thank you for taking the time to write to us, but this is not a bug. And RTFM". (RTFM is my interpretation of the rest). And that only took a little more than a month. Thanks very much. Can anyone here tell me why the CLI behaviour reported

[Fwd: Re: [PHP] Undefined Index ...confusion]

2009-07-23 Thread Kyle Smith
Sorry, list, I did a reply instead of a reply-to-all. This is what I sent to "Miller, Terion" Miller, Terion wrote: Thanks for the link Kyle!! Great thing there...(seriously I didn't know...I learn something everyday) Anyways the link to my script is: http://pastebin.ca/1

Re: [PHP] Undefined Index ...confusion

2009-07-23 Thread Kyle Smith
Miller, Terion wrote: On 7/23/09 9:24 AM, "Kyle Smith" wrote: Miller, Terion wrote: I keep getting this error while trying to use the field 'ID' to pass in a url.. And it's odd because the query is pulling everything BUT the ID which is the first field... code:

Re: [PHP] Undefined Index ...confusion

2009-07-23 Thread Kyle Smith
antList'] gets populated. Also, where do you define $i? Is $i the ID? Seemed like you've built an array of arrays and you may want $_SESSION['fullRestaurantList'][$i]['ID'], or just $i. This is all speculation from the 2 lines of code I've seen though. - Kyle

Re: [PHP] How to build an FF extension

2009-07-23 Thread Kyle Smith
check my periodic table. Then again, I tend to think in obscene acronyms. - Kyle

Re: [PHP] How to build an FF extension

2009-07-23 Thread Kyle Smith
Ashley Sheridan wrote: On Thu, 2009-07-23 at 14:39 +0100, Luke wrote: 2009/7/23 Ashley Sheridan On Wed, 2009-07-22 at 23:49 -0400, Paul M Foster wrote: On Wed, Jul 22, 2009 at 08:31:10PM -0700, Javed Khan wrote: How to build an FF extension and how to install it.

Re: [PHP] Replace in a string with regex

2009-07-22 Thread Kyle Smith
The first match inside () is assigned to $1, the second is assigned to $2, and so on. rszeus wrote: Hi, It doens't work. I get 0_main.jpg if I do that.. I don't undestand the point of $1 $2 and $3.. In preg_replace('#(screens/)temp/(.+?)_1(_main\.jpg)#', what will be $1 and $2 and $3 ? $ " I

Re: [PHP] Invalid Argument why?

2009-07-16 Thread Kyle Smith
right track ...right? Looks like you meant to do something like this: // Always better to be plural when you have an array. $rows = whatever_your_rows_come_from(); foreach($rows as $row) { $inType = $row['inType']; echo $inType . ''; } HTH, Kyle

Re: [PHP] php applications

2009-06-09 Thread Kyle Terry
On Mon, Jun 8, 2009 at 9:33 AM, Robert Cummings wrote: > Kyle Terry wrote: > >> On Mon, Jun 8, 2009 at 8:48 AM, tedd wrote: >> >> Hi gang: >>> >>> I've heard that php can be used for more than web programming, but I am >>> not >&g

Re: [PHP] php applications

2009-06-08 Thread Kyle Terry
On Mon, Jun 8, 2009 at 8:48 AM, tedd wrote: > Hi gang: > > I've heard that php can be used for more than web programming, but I am not > aware of specifically how that can be done. So, let me ask directly -- can > php be used to create a Mac Application? > > If so, how? > > Cheers, > > tedd > > >

Re: [PHP] Programming Question

2009-04-29 Thread Kyle Smith
is way you can maintain all the menu/breadcrumb/etc in one file, and have the information you need in each page to generate it. HTH, - Kyle

Re: [PHP] try - catch is not so clear to me...

2009-04-13 Thread Kyle Smith
} } Consider this also, simply echoing an error on divide by Zero might not be great if your function is called, say, before headers. Throwing exceptions can be re-caught by executing code, which can easily avoid pre-header output. Does that clear up the purpose a bit? I'm no expert, but that's my understanding. HTH, Kyle

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

2009-04-02 Thread Kyle Smith
ick Finish". Now place the full path of your script after the executable in the field provided so it looks something like: "C:\PHP\php.exe" "C:\Documents and Settings\Kyle\My Documents\scripts\MyCronPHPScript.php" HTH, Kyle *Kyle Smith* UNIX/Linux Systems Administrator In

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
Kyle Smith wrote: PJ wrote: I hope somebody can make sense of this. First, I don't understand what the difference is supposed to be between & and && - is there a difference for php and/or mysql? Second, I am trying to select all occurrences in a table.column where the first l

Re: [PHP] & and && and weird results

2009-04-01 Thread Kyle Smith
therefor the left-side is still false, however because we use the '&' operator the right side is evaluated anyway and $b now equals 3. echo $result; // In both cases, $result is false. HTH, Kyle -- *Kyle Smith* UNIX/Linux Systems Administrator Inforonics, LLC

Re: [PHP] Silly question - include vs. eval

2009-03-11 Thread Kyle Terry
On Wed, Mar 11, 2009 at 10:19 AM, Shawn McKenzie wrote: > Sándor Tamás (HostWare Kft . ) wrote: > > Yes, Rob is right. My original question is about the difference between > > the processing of a file-based site with include() OR eval(). In that > > case, if I understood it correctly, the results

Re: [PHP] escape your variables

2009-03-04 Thread Kyle Terry
On Wed, Mar 4, 2009 at 6:55 PM, Chris wrote: > Eric Butera wrote: > >> On Wed, Mar 4, 2009 at 8:18 PM, Chris wrote: >> >>> You only need to escape data coming from a user going in to your >>> database. >>> >> >> If you put user input into your database and pull it back out, it's >> still raw use

Re: [PHP] escape your variables

2009-03-04 Thread Kyle Terry
the escape has already served its purpose. > > > > Good luck with that. > > -- > http://www.voom.me | EFnet: #voom > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Is it really THAT hard to take the extra step, ensure proper application security and filter both ways? I didn't think so. Kyle Terry | www.kyleterry.com Help kick start VOOM (Very Open Object Model) for a library of PHP classes. http://www.voom.me | IRC EFNet #voom

Re: [PHP] Re: Problems with displaying results

2009-03-03 Thread Kyle Terry
1.237.919247960.png"; border=0 > > alt="Terion Miller's Facebook profile"> > > Groucho Marx - "I have had a perfectly wonderful evening, but this > wasn't > > it." > > > > You need to lookup the mysql_fetch_assoc() function. It only returns > one row from a result set that may contain multiple rows. You need > something like: > > while($row = mysql_fetch_assoc($result)) { > // do something with $row > } > > -- > Thanks! > -Shawn > http://www.spidean.com > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > You also need to filter your user inputted data. Kyle Terry | www.kyleterry.com Help kick start VOOM (Very Open Object Model) for a library of PHP classes. http://www.voom.me | IRC EFNet #voom

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

2009-02-12 Thread Kyle Terry
gt; http://dftpcs.com > u: testing > p: testing123 > > > > -- > Richard Whitney > phpmy...@gmail.com > http://phpmydev.com > 602-288-5340 > 310-943-6498 > > "You come up with ideas, I come up with solutions." > Haha...Information management and timesheets... That's what I write for a living. -- Kyle Terry | www.kyleterry.com Help kick start VOOM (Very Open Object Model) for a library of PHP classes. http://www.voom.me | IRC EFNet #voom

Re: [PHP] PHP OOP

2009-02-12 Thread Kyle Terry
> So: My vote goes to Java, or if you want a decision between C++ and > PHP it's C++. > > > -- > Currently developing a browsergame... > http://www.p-game.de > Trade - Expand - Fight > > Follow me at twitter! > http://twitter.com/moortier > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Kyle Terry | www.kyleterry.com Help kick start VOOM (Very Open Object Model) for a library of PHP classes. http://www.voom.me | IRC EFNet #voom

Re: [PHP] Re: Looking for some PHP OO programming guides

2009-02-10 Thread Kyle Terry
On Tue, Feb 10, 2009 at 12:07 PM, Kyle Terry wrote: > On Tue, Feb 10, 2009 at 9:46 AM, Tony Marston > wrote: >> Take a look at http://www.tonymarston.net/php-mysql/databaseobjects.html >> >> -- >> Tony Marston >> http://www.tonymarston.net >> http://www.

Re: [PHP] Re: Looking for some PHP OO programming guides

2009-02-10 Thread Kyle Terry
sues they had >> with learning OO so I can skip most of the hard stuff, and only make >> small mistakes (hopefully). >> -- >> >> Michael Kubler >> *G*rey *P*hoenix *P*roductions <http://www.greyphoenix.biz> >> >> > > > > -- >

Re: [PHP] maybe we could all?

2009-02-09 Thread Kyle Terry
Java. > > Your ideas sounded really great and I would like to join this group. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visi

Re: [PHP] PHP usage stats

2009-02-09 Thread Kyle Terry
cated server deals, too low to print - email me to find out! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > After disusing this, I leave you with this... Good luck my friend. Good luck... -- Kyle Terry | www.kyleterr

Re: [PHP] PHP OOP

2009-02-09 Thread Kyle Terry
bscribe, visit: http://www.php.net/unsub.php > > In my personal opinion, C++ would probably be the best language to teach OOP concepts in. That or Python. -- Kyle Terry | www.kyleterry.com Help kick start VOOM (Very Open Object Model) for a library of PHP classes. http://www.voom.me | IRC EFNet #voom -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php rpm

2009-02-04 Thread Kyle Terry
dvertised dedicated server deals, too low to print - email me to find out! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I might be wrong, but I think the packages have the php version appended to the it. so php5-soa

Re: [PHP] Is it possible to send POST vars through a header redirect?

2009-02-03 Thread Kyle Terry
Jim Lucas > > "Some men are born to greatness, some achieve greatness, > and some have greatness thrust upon them." > > Twelfth Night, Act II, Scene V >by William Shakespeare > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http

Re: [PHP] Re: Hidden costs of PHP arrays?

2009-01-30 Thread Kyle Terry
On Jan 29, 2009, at 6:07 PM, Eric Butera wrote: On Thu, Jan 29, 2009 at 9:02 PM, Paul M Foster > wrote: On Fri, Jan 30, 2009 at 11:10:16AM +1100, Clancy wrote: As a former assembly language programmer I have some idea of the vast amount of thumb twiddling which is going on behind-the-scen

Re: [PHP] PHP Content Management

2009-01-29 Thread Kyle Terry
On Jan 29, 2009, at 11:27 PM, Nathan Rixham wrote: Larry Garfield wrote: On Friday 30 January 2009 12:16:44 am Jason Todd Slack-Moehrle wrote: I would like something simple to setup, http://drupal.org/ lol -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www

Re: [PHP] Re: Doc standard for methods?

2009-01-27 Thread Kyle Terry
On Tue, Jan 27, 2009 at 7:06 AM, Eric Butera wrote: > On Tue, Jan 27, 2009 at 10:00 AM, Kyle Terry wrote: >> On Tue, Jan 27, 2009 at 5:56 AM, Nathan Rixham wrote: >>> Larry Garfield wrote: >>>> >>>> Greetings, all. I am looking for feedback on a docu

Re: [PHP] Re: Doc standard for methods?

2009-01-27 Thread Kyle Terry
best practice but i dare say > > class Narfing_mysql { > /** > * > * @return TypeA, TypeB > */ > public function narf() { // Narfing foo() >// ... > } > } > > or in the method description with @see Class inline links? > > regards > > -- > PHP G

Re: [PHP] Redirecting from unreachable page on website

2009-01-21 Thread Kyle Terry
On Wed, Jan 21, 2009 at 10:40 AM, Dušan Novaković wrote: > apache :-) > > 2009/1/21 Kyle Terry : >> 2009/1/21 Kyle Terry : >>> On Wed, Jan 21, 2009 at 10:12 AM, Dušan Novaković wrote: >>>> Hi, >>>> >>>> Is there some elegant solution h

Re: [PHP] Redirecting from unreachable page on website

2009-01-21 Thread Kyle Terry
2009/1/21 Kyle Terry : > On Wed, Jan 21, 2009 at 10:12 AM, Dušan Novaković wrote: >> Hi, >> >> Is there some elegant solution how to redirect if someone try to open >> some non existing page (e.g www.domain.com/nonexistingpage.php) to >> main page www.domain.

Re: [PHP] Redirecting from unreachable page on website

2009-01-21 Thread Kyle Terry
gt; made by Dusan > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Google for "apache 404 redirect" and read around a bit. Checkout the documentation on apache.org as well. -- Kyle Terry | www.kyleterry

Re: [PHP] MySQL class. Thoughts?

2009-01-21 Thread Kyle Terry
tabases. I'm curious what you all think. >> >> Thanks, >> Jay > > > Hey, > 1. You know the mysqli-Class? > 2. If yes, than I don't get it in which way this will improve mysql handling > > -eddy > MySQLi actually stands for MySQL Improved. P

Re: [PHP] maybe we could all?

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 9:28 AM, Jason Pruim wrote: > > On Jan 20, 2009, at 12:02 PM, Kyle Terry wrote: > > On Tue, Jan 20, 2009 at 8:52 AM, Shawn McKenzie >wrote: > > Kyle Terry wrote: > > On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham > > wrote: > >

Re: [PHP] ANNOUNCEMENT: ModBox - Open Platform as a Service

2009-01-20 Thread Kyle Terry
y appreciate any feedback as I am not so bold to > think I have cracked the code on the 1.0. The URL is below. > > ModBox - Open Platform as a Service: > http://www.sullivansoftwaresystems.com/modbox > > Thanks for your time. > > Brian Sullivan > Sullivan Software Systems > ModBox - Rock the Box. > You already posted this once... -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-20 Thread Kyle Terry
On Tue, Jan 20, 2009 at 8:52 AM, Shawn McKenzie wrote: > Kyle Terry wrote: > > On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham > wrote: > > > >> Eric Butera wrote: > >> > >>> On Mon, Jan 19, 2009 at 9:13 PM, Kyle Terry > wrote: > >>>

Re: [PHP] Client/Server Printing

2009-01-20 Thread Kyle Terry
To unsubscribe, visit: http://www.php.net/unsub.php > > We used a windows only extension to print from PHP at my last job. Might want to take a look into that. http://us2.php.net/manual/en/book.printer.php -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
ds!) > > Incidentally, I'm relatively new to the list, but I see a lot of CCs >> along with posts to the list. The CCs are only useful if non-subscribers >> can post to the list. Is that the case? >> > > welcome; good to see a new face - even if it is preformatted courier as per > :p > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I demand Dan and Nathan to go to bed now. -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
tively new to the list, but I see a lot of CCs > along with posts to the list. The CCs are only useful if non-subscribers > can post to the list. Is that the case? > > Paul > -- > Paul M. Foster > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > It's just easier to click "Reply to all" in gmail. -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
ke to such a thing. It'd be an interesting > experience to try though. > That's why branches exist. We can deploy branches and edit each others mistakes, comment them, and then merge it. -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
ver you need to do with the boxes. > >For now, I'm heading my ass off to bed as well. > > -- > > daniel.br...@parasane.net || danbr...@php.net > http://www.parasane.net/ || http://www.pilotpig.net/ > Unadvertised dedicated server deals, too low to print - email me to find > out! > I only need wiki access and commitable svn access. :) -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 6:31 PM, Nathan Rixham wrote: > Eric Butera wrote: > >> On Mon, Jan 19, 2009 at 9:13 PM, Kyle Terry wrote: >> >>> On Mon, Jan 19, 2009 at 6:07 PM, Daniel Brown wrote: >>> >>> On Mon, Jan 19, 2009 at 19:58, Edmund Hertle &g

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
parasane.net/ || http://www.pilotpig.net/ > Unadvertised dedicated server deals, too low to print - email me to find > out! > That would be awesome! It will give us a home for the project for sure. Something that isn't restrictive. -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
r of his time here. Even with my co worker sitting next to me, if we weren't using a repo, we would both be at a complete loss (right word?). -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 5:42 PM, Eric Butera wrote: > On Mon, Jan 19, 2009 at 8:35 PM, Nathan Rixham wrote: > > Kyle Terry wrote: > >> > >> On Mon, Jan 19, 2009 at 5:12 PM, Nathan Rixham > wrote: > >>> > >>> Eric Butera wrote: > >>

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 5:12 PM, Nathan Rixham wrote: > Eric Butera wrote: > >> On Mon, Jan 19, 2009 at 8:00 PM, Kyle Terry wrote: >> >> >>> On Mon, Jan 19, 2009 at 4:58 PM, Edmund Hertle < >>> edmund.her...@student.kit.edu>

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
communication... > > but now I will go to bed (2 am here) and maybe there will be about >50 > answers to this tomorrow ;) > > Well, I use Comcast and they put a 250gig cap per month of their residential customer, so my server can only be used temporarily if we need one. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: [PHP-DEV] maybe we could all?

2009-01-19 Thread Kyle Terry
lol) > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I think this is a good idea. It's almost like building and sharing a data type validation system with developers from all over the world. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: [PHP-DEV] maybe we could all?

2009-01-19 Thread Kyle Terry
eneral Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Oh now come on. That isn't fair! -- Kyle Terry | www.kyleterry.com

Re: [PHP] maybe we could all?

2009-01-19 Thread Kyle Terry
olid work, just bits of contrib > and > > discussion / feedback. > > Sounds good to me, even if there won't be some classes at the end, > discussing basic needs for basic classes like those above is appreciated > (IMO) > > Well, isn't beta 5.3 around the corner? Than why not stick to that and > maybe > improve of some of the new features > I'm in. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: developers life

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 3:27 PM, Nathan Rixham wrote: > Kyle Terry wrote: > >> On Mon, Jan 19, 2009 at 3:22 PM, Nathan Rixham wrote: >> >> Ross McKay wrote: >>> >>> On Mon, 19 Jan 2009 21:28:05 +, Nathan Rixham wrote: >>>> >>&g

Re: [PHP] Re: developers life

2009-01-19 Thread Kyle Terry
nd hoping it changes. bahhumbug > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I guess you're just stuck in what ever country you're in! -- Kyle Terry | www.kyleterry.com

Re: [PHP] developers life

2009-01-19 Thread Kyle Terry
me! > :-) > > afan > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > I'm actually convinced it's the PHP mailing list disease. -- Kyle Terry | www.kyleterry.com

Re: [PHP] developers life

2009-01-19 Thread Kyle Terry
with the thought "i wonder what it's like"; anticlimax + > reality check, it was just a taskbar, start menu and desktop.. you'd think > I'd know by now. > > regards :-) > > i so have more important things to do > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: ANNOUNCEMENT: ModBox - an Open Platform as a Service (OPaaS)

2009-01-19 Thread Kyle Terry
t; > announcements on >>>> >> >> > this list, but thought there might be a better list. Any >>>> >> >> > suggestions? >>>> >> >> >>>> >> >> As long as it's an announcement and not a commercial >>>> >> >> advertisement, you'll be fine. One thing that we generally >> >> >>>> consider >>>> >> >> "bad etiquette" as well would be only posting to this list to >> >>>> >> announce >>>> >> >> your product or project. Being a helpful contributor to the list >>>> >> >> in >>>> >> >> general will buy you some Brownie Points[tm]. >>>> >> > >>>> >> > We get brownie points for helping? Crap, who's keeping track of >> >>>> > mine? I >>>> >> > had no idea!! Can they be cashed in for treats? :B >>>> >> > >>>> >> >>>> >> Oh man... 3312 msg >>>> >> >>>> >> http://marc.info/?a=10639834826&r=1&w=4 >>>> > >>>> > >>>> > Good ol' Marc, that guy keeps track of everything! >>>> > >>>> > Now... about those treats >>>> > >>>> > >>>> > -- >>>> > http://www.interjinn.com >>>> > Application and Templating Framework for PHP >>>> > >>>> >>>> -- >>> http://www.interjinn.com >>> Application and Templating Framework for PHP >>> >>> >>> >> Well it was his thread at first. Just mad you haven't got your treat yet? >> >> > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > You just top posted. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
ntimidating , that's all. Are you referring to bad language? > > > Anyways cheers to all. I enjoy reading responses and asking questions here. > This is the best group I have ever been involved with as long as I have > started learning PHP. > > Thanks Again > -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
g Framework for PHP > > Either way, Vam still owes Dan dinner for Dan kindly handing his ass to him on a silver platter. My ego sits in my Debian coffee cup every morning. (* wait, I wish I had a Debian coffee cup *) -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
tp://www.interjinn.com > Application and Templating Framework for PHP > > I was just about to ask the same thing. Also, I've been flamed for top posting before, so, don't top post. -- Kyle Terry | www.kyleterry.com

Re: [PHP] PHP and Apache configuration

2009-01-19 Thread Kyle Terry
for Firefox, Chrome, Opera and Safari: > http://www.rgraph.org (Updated January 17th) > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Richard's solution is much better. -- Kyle Terry | www.kyleterry.com

Re: [PHP] PHP and Apache configuration

2009-01-19 Thread Kyle Terry
gt; But with this configuration, the redirect command cant access the > scriptfile.php > > Do you have the solution for this? > > thanks. > You could use sessions. Start a session and set a redirect true variable of some sort. Get the idea? -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 10:59 AM, Robert Cummings wrote: > On Mon, 2009-01-19 at 10:50 -0800, Kyle Terry wrote: > > On Mon, Jan 19, 2009 at 10:35 AM, Daniel Brown wrote: > > > > > On Mon, Jan 19, 2009 at 13:22, Kyle Terry wrote: > > > >> > > > &

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
On Mon, Jan 19, 2009 at 10:35 AM, Daniel Brown wrote: > On Mon, Jan 19, 2009 at 13:22, Kyle Terry wrote: > >> > > Aside from a few perl scripts, I have rewritten all my bash scripts in > PHP. > > It's just easier to manage for me. > > /me nods. > &g

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
erl scripts, I have rewritten all my bash scripts in PHP. It's just easier to manage for me. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Opinions / Votes Needed

2009-01-19 Thread Kyle Terry
rticle.gmane.org/gmane.comp.php.general/190836/match= >2: http://www.tonymarston.net/aboutme/disasters.html > > -- > > daniel.br...@parasane.net || danbr...@php.net > http://www.parasane.net/ || http://www.pilotpig.net/ > Unadvertised dedicated server deals, too low to print - email me to find > out! > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Owned? -- Kyle Terry | www.kyleterry.com

Re: [PHP] Need List Advice

2009-01-19 Thread Kyle Terry
but thought there might be a better list. Any suggestions? > > > > Thanks in advance. > > Try it and see if you get flamed. ;) Seriously though, I think this > one is fine. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://

Re: [PHP] 100% CPU Usage somewhere in script - how to find it?

2009-01-18 Thread Kyle Terry
eed say what function/method this > > was happening in. > > > > http://xdebug.org/docs/profiler > > > > Sounds like that'd be pretty tricky, so good luck. > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > > > > -- > Alex Davies > > This email and any files transmitted with it are confidential and > intended solely for the use of the individual or entity to whom they > are addressed. If you have received this email in error please notify > the sender immediately by e-mail and delete this e-mail permanently. > You should probably use Xdebug to find out what needs that method... -- Kyle Terry | www.kyleterry.com

Re: [PHP] I can't get help from the binary administrator

2009-01-15 Thread Kyle Terry
php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Go here for the archives http://www.php.net/mailing-lists.php You will find most of the lists have archives. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Zend Framework...where to start? -- don't.

2009-01-14 Thread Kyle Terry
rks for this. > > Incidentally, I would differ from the reviewer in the link above only in > this respect: He maintains that every line of code adds time. While this > is true, I believe it's the number of files which have to be opened > which drags down framework numbers the mo

Re: [PHP] Zend Framework...where to start? -- don't.

2009-01-14 Thread Kyle Terry
cle). > > *sigh* It's unfortunate you guys can't see past some superficial stuff > and have an intelligent dialog about frameworks and help the OP with his > question. Instead this has turned into an "attack" on me -- one of the > few people who posted opinions and helpful insight for him to make an > informed decision. Thanks to those who did agree with me, and even > those who disagree'd politely. > > d. > > -- Kyle Terry | www.kyleterry.com

Re: [PHP] Zend Framework...where to start? -- don't.

2009-01-14 Thread Kyle Terry
On Wed, Jan 14, 2009 at 4:06 PM, Ashley Sheridan wrote: > On Wed, 2009-01-14 at 15:47 -0800, Daevid Vincent wrote: > > On Wed, 2009-01-14 at 14:28 -0800, Kyle Terry wrote: > > > > > On Wed, Jan 14, 2009 at 2:18 PM, Eric Butera > wrote: > > > > > &

Re: [PHP] Zend Framework...where to start? -- don't.

2009-01-14 Thread Kyle Terry
; http://www.interjinn.com > > Application and Templating Framework for PHP > > > > > > I'm using Safari. :D > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > His website made firefox crash! >=[! -- Kyle Terry | www.kyleterry.com

Fwd: [PHP] Quotes in querys

2009-01-14 Thread Kyle Terry
On Wed, Jan 14, 2009 at 10:07 AM, Kyle Terry wrote: > > > On Wed, Jan 14, 2009 at 9:11 AM, wrote: > >> >> > Doesn't anybody use prepared statements these days? It even helps MySQL >> > AND Oracle cache an execution plan... >> >> Forgive me i

Re: [PHP] Quotes in querys

2009-01-14 Thread Kyle Terry
unsub.php > > It is over head, but it caches the execution plan for multiple runs of the script. So different users with different data will use the same cached query on the database. Saving processing time. It also prevents SQL injection on the fly because you are indicating what data type each place holder will need to accept. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Quotes in querys

2009-01-14 Thread Kyle Terry
; interpolation. > > > > Not sure how/why it came about, but it makes zero sense, really... > > [/soapbox] > > > > ymmv > > > > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Doesn't anybody use prepared statements these days? It even helps MySQL AND Oracle cache an execution plan... -- Kyle Terry | www.kyleterry.com

Re: [PHP] Holy crap

2009-01-13 Thread Kyle Terry
On Tue, Jan 13, 2009 at 6:03 PM, Daniel Brown wrote: > On Tue, Jan 13, 2009 at 20:54, Kyle Terry wrote: > > > > Every time I try I get this error: > > > > " > > HTTP Error 500.22 - Internal Server Error > > An ASP.NET setting has been detected t

Re: [PHP] Holy crap

2009-01-13 Thread Kyle Terry
On Tue, Jan 13, 2009 at 5:49 PM, Daniel Brown wrote: > On Tue, Jan 13, 2009 at 20:34, Kyle Terry wrote: > > > > www.idonttrustmicrosoftwithmywebsite.com/ps/i/hate/them/ > > Couldn't reach the site. Try restarting IIS. > > -- > > daniel.br...@p

Re: [PHP] Holy crap

2009-01-13 Thread Kyle Terry
www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > www.idonttrustmicrosoftwithmywebsite.com/ps/i/hate/them/ -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: RewriteRules

2009-01-13 Thread Kyle Terry
;> >>> HTML; >>> ?> >>> >>> But to each his (Or her) own right? >>> >> >> Wow, that's really low level... I haven't written a tag in years. >> > > So then the question is begged... How do you write your forms? :) If > there's a better way to do it I'm all ears! Other then using CSS... My HTML > knowledge came from the 90's! :P > > > > -- > Jason Pruim > japr...@raoset.com > 616.399.2355 > > > > Build yourself a form builder :). Makes writing a page as east as 1 2 3! -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: Been staring at the code for too long...

2009-01-09 Thread Kyle Terry
p://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Unless his database is named database and his table is named table. ;) -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: First steps towards unix and php

2009-01-08 Thread Kyle Terry
On Jan 8, 2009, at 9:39 PM, Ross McKay wrote: Skip Evans wrote: I used Kate on Ubuntu for a code editor. I just read through a bit about Geany (was not familiar with it), but don't see too much more it would do for me than Kate. What are some of your favorite features of Geany I should b

Re: [PHP] Holocoste against palestinians

2009-01-08 Thread Kyle Terry
gt;>>>> >>>>>>> All Email originating from UWC is covered by disclaimer >>>>>>> http://www.uwc.ac.za/portal/public/portal_services/disclaimer.htm >>>>>>> -- >>>>>>> PHP General Mailing List (http://www.php.net/) >>>>>>> To unsubscribe, visit: http://www.php.net/unsub.php >>>>>>> >>>>>>> >>>>>> I think the site might be written in ColdFusion even. Totally the >>>>>> wrong >>>>>> list. I didn't read the content of it. Looked like more political >>>>>> propaganda crap. >>>>>> >>>>>> >>>>>> Ash >>>>>> www.ashleysheridan.co.uk >>>>>> >>>>>> >>>>>> >>>>> >>>>> http://www.thedailymash.co.uk/news/international/loving-this%2c-admit-israel-and-hamas-200812291481/ >>>>> >>>>> >>>>> >>>> Please, totally off-list and inappropriate. >>>> >>>> >>>> Ash >>>> www.ashleysheridan.co.uk >>>> >>>> >>>> >>> agreed; >>> >>> http://www.thedailymash.co.uk/news/international/israel-to-open-humanitarian-corridor-and-then-blow-it-up-200901071493/ >>> >>> >> >> stop trolling!! >> >> >> Ash >> www.ashleysheridan.co.uk >> >> >> > ko ash > http://short.ie/qintxa > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > Totally owned. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Re: [PEAR-DEV] Re: [PHP] First official release of the PHP WhitePaper

2009-01-08 Thread Kyle Terry
ploma -- a certification > that you can get your act together and learn for the A-levels. Nothing > really beyond that. > > Till > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > At least this one isn't an attachment. ;) Or an attempt to attach anything... Good paper. -- Kyle Terry | www.kyleterry.com

Re: [PHP] eof bof in php

2008-12-22 Thread Kyle Terry
On Dec 22, 2008, at 12:15 PM, Ashley Sheridan wrote: On Mon, 2008-12-22 at 15:04 -0500, Anthony Gentile wrote: Well you said it...for my example it makes sense. For when it gets really messy by all means concatenate with php. However, my argument is not so much keeping html seperate from

Re: [PHP] Require error

2008-12-19 Thread Kyle Terry
> > > What happens if you remove the die() statement? > > > > require $incl; > > > > -- > > Philip Graham > > > > Hey! That fixed it. That's strange. > > -- > --Zootboy > I totally forgot you have to wrap requires and includes in () if you are putting the die statement after it. (require $incl) or die('message'); //should work just fine for you. -- Kyle Terry | www.kyleterry.com

Re: [PHP] Require error

2008-12-19 Thread Kyle Terry
On Fri, Dec 19, 2008 at 9:50 AM, Wolf wrote: > > ---- Kyle Terry wrote: > > On Fri, Dec 19, 2008 at 9:43 AM, Wolf wrote: > > > > > Bottom Post > > > > > > sean greenslade wrote: > > > > No. The file is called testing.php and it i

Re: [PHP] Require error

2008-12-19 Thread Kyle Terry
On Fri, Dec 19, 2008 at 9:43 AM, Wolf wrote: > Bottom Post > > sean greenslade wrote: > > No. The file is called testing.php and it is trying to include sql.inc > > > > On Fri, Dec 19, 2008 at 12:36 PM, Kyle Terry wrote: > > > > > > &g

[PHP] Weird Syntax Error

2008-11-13 Thread Kyle Terry
ALUES ('$filename', '$_SESSION['upload']['type']', '$_SESSION['upload']['size']', now(), '$username', '$path', '$release_id')"; -- Kyle Terry | www.kyleterry.com

Re: [PHP] Infinite Loop Issue

2008-11-07 Thread Kyle Terry
On Thu, Nov 6, 2008 at 7:18 PM, Eric Butera <[EMAIL PROTECTED]> wrote: > On Thu, Nov 6, 2008 at 5:57 PM, Nathan Nobbe <[EMAIL PROTECTED]> > wrote: > > On Thu, Nov 6, 2008 at 3:54 PM, Daniel P. Brown > > <[EMAIL PROTECTED]>wrote: > > > >>

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
On Thu, Nov 6, 2008 at 2:47 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > On Thu, Nov 6, 2008 at 3:01 PM, Kyle Terry <[EMAIL PROTECTED]> wrote: > >> looks like its $all->fetch(); >> >> The query runs fine in MySQL... > > > please keep responses on-

Re: [PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
> > else is wrong. > > Right. It may also be worth asking exactly how the OP determined > that it's the particular function he showed. > >Kyle, are you positive that your displayAll() function is even the > point of fault? > > -- > > http://www.parasane.

[PHP] Infinite Loop Issue

2008-11-06 Thread Kyle Terry
"http://mantisus/view.php?id=$a\"; target=\"_blank\">".$a.''; $i++; } $issues = implode(', ', $row2); echo $release_id; echo $description; echo $date; echo $issues; echo $priority; echo ''; } $all->close(); } -- Kyle Terry | www.kyleterry.com

Fwd: [PHP] Count the Number of Elements Using Explode

2008-10-31 Thread Kyle Terry
-- Forwarded message -- From: Kyle Terry <[EMAIL PROTECTED]> Date: Fri, Oct 31, 2008 at 9:31 AM Subject: Re: [PHP] Count the Number of Elements Using Explode To: Alice Wei <[EMAIL PROTECTED]> I would use http://us2.php.net/manual/en/function.array-count-values.php

Re: [PHP] Reg Ex

2008-10-31 Thread Kyle Terry
Thanks for the reply. For now I used substr($filename,0,-4) and that worked perfectly. I need to learn reg ex badly :(. On Fri, Oct 31, 2008 at 7:51 AM, Boyd, Todd M. <[EMAIL PROTECTED]> wrote: > > -Original Message- > > From: Kyle Terry [mailto:[EMAIL PROTECTED

  1   2   3   >