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 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 developer to
>
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.
Perha
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 wrote:
>
> Maybe an adittional information: PSPad is completely freeware and portable.
>
> You can download it right here: http://pspad.en.softonic.com/
>
> This
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 usi
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
meth
On Mon, Nov 8, 2010 at 9:39 PM, David McGlone 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 templating eng
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 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, customizable preference
ok, how do I get off this list?
unsubscribe
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 f'ed
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
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. Gue
Ummm yeah, its going to take me a while to wrap my head around that one.
thanks though!
Matt
On Thu, Jun 25, 2009 at 5:07 PM, Andrew Ballard wrote:
> On Thu, Jun 25, 2009 at 4:21 PM, Andrew Ballard wrote:
> > On Thu, Jun 25, 2009 at 3:20 PM, Matt Giddings wrote:
> >> I kn
shley Sheridan
wrote:
> 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
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:
user.tab
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 star
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: [EMAI
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 PHP
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
my
login script.
Matt
> -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
Matt
> -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 o
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: Faile
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: http://www.php.
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 some PHP programming and cod
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
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: [EMA
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. I
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
I don't know of any script that does this, but that’s 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 bu
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,
> -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:
>
>
> function howru()
> {
>
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.
Plea
]
> Sent: Monday, 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 p
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).
V
>
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[k
2 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 that I am new to smarty and for some reason I'm
> > find
> -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, Mat
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 ) {
...
// t
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 ) {
...
// t
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 l
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 par
41 matches
Mail list logo