Re: [PHP] webform spam prevention

2013-04-04 Thread Terry Ally (Gmail)
answer these types of questions. And if you can't, you usually are in the > wrong place anyway. > > - Tul > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- *Terry Ally* Twitter.com/terryally Facebook.co

Re: [PHP] Re: Open form in new window

2013-03-04 Thread Terry Ally (Gmail)
I was using an example and NOT intended to show ASP. On 4 March 2013 08:35, Maciek Sokolewicz wrote: > On 4 March 2013 09:32, Terry Ally (Gmail) wrote: > > You could echo HTML code e.g. > Which is still purely HTML and has nothing whatsoever to do with PHP. > > > > &g

Re: [PHP] Re: Open form in new window

2013-03-04 Thread Terry Ally (Gmail)
gt; PHP is definitly the wrong choice for things like opening browser windows. > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > -- *Terry Ally* Twitter.com/terryally Facebook.com/terryally ~*~*~*~*~*~*~*~*~*~*~*~*~*

Re: [PHP] Date comparison going wrong, wrong, wrong

2012-11-20 Thread Terry Ally (Gmail)
_**date']); > > >> if ($todaydate< $showenddate): >> echo "The date of the show has not yet arrived"; >> else: >> echo "The show has ended"; >> endif; >> >> You must convert both $todaydate and $showendate with strt

Re: [PHP] Date comparison going wrong, wrong, wrong

2012-11-20 Thread Terry Ally (Gmail)
Dear Duken, Many thanks for the solution. It worked! And thanks to everyone else who pitched in with various solutions. Regards Terry On 12 November 2012 10:06, Duken Marga wrote: > Try this: > > $todaydate = strtotime(date("D, M jS, Y g:i:s a")); > $showenddate = strt

Re: [PHP] Date comparison going wrong, wrong, wrong

2012-11-11 Thread Terry Ally (Gmail)
Stuart, I reversed it as you suggested and every future show is displaying as having ended. Terry On 11 November 2012 19:11, Stuart Dallas wrote: > Please include the list when replying. > > On 11 Nov 2012, at 19:08, "Terry Ally (Gmail)" > wrote: > > > What I

Re: [PHP] Date comparison going wrong, wrong, wrong

2012-11-11 Thread Terry Ally (Gmail)
Hi Shiplu and Stuart, Comparing timestamps was my first option. I've reinstated it. Have a look at http://www.lakesidesurrey.co.uk/test.php (show_source included) and you will see that PHP is still outputting the wrong thing. I just can't figure out what's wrong. Terry On 11 N

Re: [PHP] Calculating driving distance between UK postcodes

2012-05-04 Thread Terry Ally (Gmail)
just the distance. I need the distance so that I can calculate cost of a trip. http://maps.googleapis.com/maps/api/distancematrix/json"; method="get"> Get Distance On 4 May 2012 15:08, David OBrien wrote: > Google is still your friend > > On Fri, May 4, 20

Re: [PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-05-03 Thread Terry Ally (Gmail)
Hi all, This question is now closed. There is nothing wrong with my script. It was an error by Google when they switched over to the new-look email and have since rectified the issue and all is back to normal. Thanks to all who have responded. Terry On 3 May 2012 21:05, Gerardo Benitez

Re: [PHP] Retrieve pages from an ASP driven site

2012-05-03 Thread Terry Ally (Gmail)
. But I am not > quite familiar with how asp uses _doPostBack function with the "next" > button below the book list to advance to the next page. I hope someone > who knows ASP well can help out here. I need to know how to retrieve > next page with PHP code. > > Kind

Re: [PHP] date conversion/extraction issues

2012-05-03 Thread Terry Ally (Gmail)
Haluk, After you retrieve the date from the database you still have to convert it from a string to time and then to a date. Try: Terry On 2 May 2012 22:36, Haluk Karamete wrote: > This is my code and the output is right after that... > > $PDate = $row['PDate']; > //

Re: [PHP] PHP & Database Problems

2012-05-02 Thread Terry Ally (Gmail)
#x27; WHERE MedRec='1' LIMIT 1"); Having said that I notice that you have two primary keys in Intake3. Not aware that a table can carry two. Terry On 2 May 2012 19:53, Ethan Rosenberg wrote: > have a database > > mysql> describe Intake3; > ++--

[PHP] PHP Mailto() - Google now displaying HTML as Plain Text

2012-04-29 Thread Terry Ally (Gmail)
the Content-type header must be set $headers = 'From: '.$n.'<'.$email . ">\r\n" ; $headers .= 'Reply-To: '.$email . "\r\n"; $headers .= 'cc: XXX ' . "\r\n"; $headers .= 'Bcc: XXX ' . "\r\n"; // Additional headers $headers .= 'MIME-Version: 1.0' . "\r\n"; $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n"; $headers .= 'X-Mailer: PHP/' . phpversion(); // send email mail($to, $subject, $message, $headers); Thanks -- *Terry Ally*

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] 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
www.php.net/unsub.php > > * Prepares flame thrower * -- Kyle Terry | www.kyleterry.com

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
net/ > [EMAIL PROTECTED] || [EMAIL PROTECTED] > Ask me about our current hosting/dedicated server deals! > -- Kyle Terry | www.kyleterry.com

[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

Re: [PHP] Reg Ex

2008-10-31 Thread Kyle Terry
I thought of a couple other ways anyway... basename($file, '.zip') substr($file, 0, -4) On Fri, Oct 31, 2008 at 5:33 AM, Stut <[EMAIL PROTECTED]> wrote: > On 31 Oct 2008, at 12:27, Kyle Terry wrote: > >> I'm horrible with regular expression. I need t

[PHP] Reg Ex

2008-10-31 Thread Kyle Terry
I'm horrible with regular expression. I need to match the text before a file extension. So if the file is called US.123.kyle.20081029.zip, I would then need to match US.123.kyle.20081029. Thanks! -- Kyle Terry | www.kyleterry.com

Re: [PHP]Keep the modification date of a file when archiving it.

2008-10-23 Thread Kyle Terry
ible? > > Best Regards, > Bastien Helders > > _ > Téléphonez gratuitement à tous vos proches avec Windows Live Messenger ! > Téléchargez-le maintenant ! > http://www.windowslive.fr/messenger/1.asp -- Kyle Terry | www.kyleterry.com

[PHP] Printing JPEG

2008-10-23 Thread Kyle Terry
I'm stuck... What is the best way to send a jpg to a printer with PHP? Looks like it is only working with png and bmp... -- Kyle Terry | www.kyleterry.com

  1   2   >