Re: [PHP] Hey, I have a full time PHP developer position in Chicago!

2013-09-10 Thread Matt Giddings
Sorry I can't relocate at the time. Thanks for sending me the notification though. : ) Matt On Tue, Sep 10, 2013 at 10:41 AM, Steve Gadlin st...@blewt.com wrote: Howdy. My name is Steve, and I run the web department for Weigel Broadcasting in Chicago. We're looking for a senior-level PHP

Re: [PHP] Introduction ... !

2013-03-02 Thread Matt Giddings
I've been on this list since the early 2000's. I used to participate a lot back then but then took up a non-php related job and I stopped paying attention to the list. I've been working again with php for the past 4.5 years but choose to just monitor the list and haven't participated much.

Re: [PHP] Best editor?

2011-08-03 Thread Matt Giddings
Notepad!!! LOL.. I use netbeans but eclipse is nice. A lot of it is personal opinion. On Wed, Aug 3, 2011 at 9:46 AM, Florian Müller florip...@hotmail.comwrote: Maybe an adittional information: PSPad is completely freeware and portable. You can download it right here:

Re: [PHP] notices nightmare - looking for a regex solution

2011-06-01 Thread Matt Giddings
You can put an @ symbol in front each item that is throwing the error. That may take some time though. You could use something like find /htdocs_folder -name \*.php -print | xargs sed -i s/\$array_name/@$array_name/g That might get you what you're looking for. But be cautious because this

Re: [PHP] notices nightmare - looking for a regex solution

2011-06-01 Thread Matt Giddings
I was thinking about this a little more and thought that the method I sent before will work, but it has the potential of clobbering variables that are not related to this warning/notice. Best bet would be to create a list of file names that contain the offending variables then feed that to sed

Re: [PHP] Template engines

2010-11-08 Thread Matt Giddings
On Mon, Nov 8, 2010 at 9:39 PM, David McGlone da...@dmcentral.net wrote: On Mon, 2010-11-08 at 16:51 -0500, Steve Staples wrote: On Mon, 2010-11-08 at 14:41 -0700, Hansen, Mike wrote: I really like the idea of using a templating engine. Which one do you use? Why? For those that don't use

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

2010-10-13 Thread Matt Giddings
I've tried Eclipse and Netbeans and have found Netbeans to fit my needs well. On Wed, Oct 13, 2010 at 1:40 PM, James Diamond djdiam...@gmail.com wrote: Hey Mike, I use zend eclipse, love it. What I love about it is what I love about any IDE, code complete, project configurations,

Re: [PHP] Will PHP ever grow up and have threading?

2010-03-24 Thread Matt Giddings
unsubscribe

Re: [PHP] Will PHP ever grow up and have threading?

2010-03-24 Thread Matt Giddings
ok, how do I get off this list?

[PHP] storing a mysql query in mysql

2010-02-17 Thread Matt Giddings
Whats the best way to store a mysql query in mysql. I'm trying to store a mysql query in a debug log table if there is a problem with the query. I've tried using addslashes and a few other commands. I don't have a problem putting the data into the database but when I view it with sqlyog its

[PHP] Determining Calling Script Information

2009-08-13 Thread Matt Giddings
Hi, Is there a way (other than using __LINE__ and __FILE__) to determine which file line called a function/method? I would like to add some debugging information to a method but I don't want to have to go through to each line that calls it and add the __LINE__ and __FILE__ parameters.

Re: [PHP] Determining Calling Script Information

2009-08-13 Thread Matt Giddings
Thanks for the pointers! Matt Robert Cummings wrote: Matt Giddings wrote: Hi, Is there a way (other than using __LINE__ and __FILE__) to determine which file line called a function/method? I would like to add some debugging information to a method but I don't want to have to go through

Re: [PHP] OT mysql pivot table problem

2009-06-26 Thread Matt Giddings
in this search: http://www.google.com/search?q=sql+split+tally+table Andrew -- Matt Giddings Web Programmer Information Technology Services Saginaw Valley State University Phone: 989.964.7247 http://www.svsu.edu

[PHP] OT mysql pivot table problem

2009-06-25 Thread Matt Giddings
I know this is the off topic (sorry), but it is a php project that I'm working on! I need some pointers on how to pivot a mysql column (containing comma delimited data) into an equal number of rows (see example). Any direction (pointers to links, etc. would be appreciated). From this:

Re: [PHP] OT mysql pivot table problem

2009-06-25 Thread Matt Giddings
Sheridan a...@ashleysheridan.co.ukwrote: On Thu, 2009-06-25 at 15:20 -0400, Matt Giddings wrote: I know this is the off topic (sorry), but it is a php project that I'm working on! I need some pointers on how to pivot a mysql column (containing comma delimited data) into an equal number

[PHP] php and unidata

2004-06-18 Thread Matt Giddings
Hello, Anybody out there in php land succesfully use php with the unidata database running on unix? We're going to be starting a project that requires php to unidata communication and I'm looking for pointers or any other useful information that will help this project get off to a smooth

[PHP] help with email problem

2003-08-14 Thread Matt Giddings
Hello, Well it would appear that the lowlife scum that was hijacking email address from this list is still at it. I just received an email from someone in Hawaii that was spammed with my address. Is there anything that can be done about this? I'm about ready to unsubscribe from this

RE: [PHP] string concatenation from array

2003-08-14 Thread Matt Giddings
Use the . concatenation operator. : ) $wresult = ; foreach ($search_string as $word_result) { $wresult = $wresult . . $word_result; } echo $wresult; Matt -Original Message- From: Micah Montoy [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 12, 2003 3:58 PM To: [EMAIL

[PHP] weird php error

2003-08-01 Thread Matt Giddings
Hello, I'm getting a weird warning message from a php script that I'm working on. Right now the script does not contain any include or require statements and is basically a very simple straight forward script. But when I try to execute via the browser I get the following error: Warning:

RE: [PHP] weird php error

2003-08-01 Thread Matt Giddings
-Original Message- From: David Nicholson [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 7:13 PM To: Matt Giddings Cc: [EMAIL PROTECTED] Subject: Re: [PHP] weird php error Hello, This is a reply to an e-mail that you wrote on Sat, 2 Aug 2003 at 00:10, lines prefixed

RE: [PHP] weird php error

2003-08-01 Thread Matt Giddings
-Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 8:02 PM To: Matt Giddings; 'David Nicholson' Cc: [EMAIL PROTECTED] Subject: Re: [PHP] weird php error yes it could be in the httpd.conf file. look in your VirtualHost block and see if something

RE: [PHP] weird php error

2003-08-01 Thread Matt Giddings
Duh, I figured it out. I had the permissions screwed up on the file. Thanks for your help and sorry for bothering everybody else with my ignorance. Matt -Original Message- From: Matt Giddings [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 11:25 PM To: 'Jim Lucas'; 'David

[PHP] PHP Hosting (somewhat OT)

2003-07-31 Thread Matt Giddings
Hello, I'm currently looking at http://www.phpwebhosting.com/ to move a medium size site to. Has anyone had any experience with them, could you pass any comments about their service on to me? Thanks, Matt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Great Opportunity for all group members!!!

2003-04-05 Thread Matt Giddings
?php $user = Chinmoy Barua [mailto:[EMAIL PROTECTED]; function spam-o-meter( $sender ) { return( is_real($sender) ? 'not spam' : 'spam' ); } if( spam-o-meter($user) == 'spam' ) { echo punt user!; } ? This sender is correct; this was a great opportunity for me to brush up on

RE: [PHP] window size...

2003-04-04 Thread Matt Giddings
DT, PHP is a server side scripting language, it does not have the ability to manipulate client side objects. You're pretty much stuck with javascript or vbscript and possible a few others. Matt -Original Message- From: Deependra b. Tandukar [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: [PHP] chill out

2003-04-02 Thread Matt Giddings
Actually this list has maintained a high level of professionalism compared to many other lists I'm a member of, join a VB or any other support list for a MS product and you'll see what I mean. Only within the last few days have I seen the list (or members of the list) fail to uphold its status.

RE: [PHP] QUESTION - user management

2003-04-02 Thread Matt Giddings
Someone recently posted code for this exact topic on phpclasses.org, follow the link below. http://phpclasses.mirrors.nyphp.org/browse.html/package/1018.html Matt -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 02, 2003 5:58 AM To: [EMAIL

RE: [PHP] Is there a PHP for Dummies?

2003-03-28 Thread Matt Giddings
I purchased a few php books and was sorely disappointed. I found that the online documentation and this php list were the best resources for php. You'll find that pretty much any book on php will be outdated by the time it hits the shelves, and with php 5 coming out in the near future (I

RE: [PHP] lurker awakes

2003-03-20 Thread Matt Giddings
I don't know of any script that does this, but thats not saying that one doesn't exist. I don't know what software your using, but all passwords should be stored in encrypted format to help deter the use of scripts like this. They may be able to view the contents of the password field

RE: [PHP] Emacs?

2003-02-26 Thread Matt Giddings
Don't you mean 42? -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 7:55 PM To: PHP List Subject: RE: [PHP] Emacs? 25 -Original Message- From: Sascha Braun [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003

RE: [PHP] Help on OOP

2002-12-07 Thread Matt Giddings
-Original Message- From: Khalid El-Kary [mailto:[EMAIL PROTECTED]] Sent: Saturday, December 07, 2002 6:03 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Help on OOP hi, a function can be defined from inside another function! this works here: ?php function howru() {

RE: [PHP] Argh! nulls un stuff..

2002-10-14 Thread Matt Giddings
if( !empty($_SESSION[temp]) is_numeric($_SESSION[temp]) $_SESSION[temp] = 0 ) { ... } Something like this may work, first check to see if its not empty, then numeric, then if its greater than or equal to 0. If all three conditions are true then it'll execute the ... block. Please note that

[PHP] Determining platform PHP is running on?

2002-09-30 Thread Matt Giddings
Is there a way to determine what platform PHP is running on? I'm trying to write a script that parses path names which we all know unix and windose don't agree with each other. Thanks, Matt --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com).

RE: [PHP] Determining platform PHP is running on?

2002-09-30 Thread Matt Giddings
, September 30, 2002 2:51 PM To: 'Matt Giddings'; [EMAIL PROTECTED] Subject: RE: [PHP] Determining platform PHP is running on? [snip] Is there a way to determine what platform PHP is running on? I'm trying to write a script that parses path names which we all know unix and windose don't agree

[PHP] Smarty template question

2002-09-28 Thread Matt Giddings
Hello, Be for warned that I am new to smarty and for some reason I'm finding it very difficult to learn. ??? Anyway, my question is how do I access an array of associative arrays via the {section} statement? Heres the code: PHP: Function readComment( $smarty, $bid ) { ... //

[PHP] smarty template question.

2002-09-28 Thread Matt Giddings
Hello, Be for warned that I am new to smarty and for some reason I'm finding it very difficult to learn. ??? Anyway, my question is how do I access an array of associative arrays via the {section} statement? Heres the code: PHP: Function readComment( $smarty, $bid ) { ... //

RE: [PHP] Smarty template question

2002-09-28 Thread Matt Giddings
-Original Message- From: Peter J. Schoenster [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 28, 2002 5:25 PM To: [EMAIL PROTECTED] Cc: Matt Giddings Subject: Re: [PHP] Smarty template question On 28 Sep 2002 at 15:48, Matt Giddings wrote: Hello, Be for warned

RE: [PHP] Smarty template question

2002-09-28 Thread Matt Giddings
PROTECTED] Cc: Matt Giddings Subject: Re: [PHP] Smarty template question On 28 Sep 2002 at 15:48, Matt Giddings wrote: Hello, Be for warned that I am new to smarty and for some reason I'm finding it very difficult to learn. ??? Anyway, my question is how do I access an array

RE: [PHP] Smarty template question

2002-09-28 Thread Matt Giddings
http://www.php.net/manual/en/language.types.array.php#language.types.arr ay.syntax This is done by assigning values to the array while specifying the key in brackets. You can also omit the key, add an empty pair of brackets ([]) to the variable-name in that case. $arr[key] = value;

Re: [PHP] Parse Error(Newbie)

2002-05-27 Thread Matt Giddings
try this: $query = select * from news WHERE id = '$_get['id']'; the double quote right before the $ is ending the string, from that point on everything is an error. Matt On Mon, 27 May 2002 [EMAIL PROTECTED] wrote: I know it is probably something obvious but the following gives me a parse

Re: [PHP] Parse Error(Newbie)

2002-05-27 Thread Matt Giddings
Another thing you may want to try is the following line: $query = select * from news WHERE id = ' . $_get['id'] . '; Matt On Mon, 27 May 2002 [EMAIL PROTECTED] wrote: I know it is probably something obvious but the following gives me a parse error and as a newbie I am having trouble