Re: [PHP] Parse error help.., thanks..

2007-03-30 Thread Ian
Thanks very much for the help, Davi,, no more such errors.. :) Ian "Davi" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Em Sexta 30 Março 2007 18:55, Ian escreveu: > Parse error: syntax error, unexpected ';' in > /hxxx/x/domains/x.com/public_html/blog/labels.php on line 15 >

Re: [PHP] Parse error help.., thanks..

2007-03-30 Thread Ian
Hehe.., didn't i told i am poor in this, actually, never learn PHP before.. :) No more such errors anymore thank you Tijnema! =) Ian ""Tijnema !"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On 3/30/07, Ian <[EMAIL PROTECTED]> wrote: >> Hi everyone, i am new to PHP, but not a

Re: [PHP] Parse error help.., thanks..

2007-03-30 Thread Tijnema !
On 3/30/07, Ian <[EMAIL PROTECTED]> wrote: Hi everyone, i am new to PHP, but not a programmer.., i got this php code to workout on something on my blog, but it seems that it gives me the following error: Parse error: syntax error, unexpected ';' in /hxxx/x/domains/x.com/public_html/blog/

Re: [PHP] Parse error help.., thanks..

2007-03-30 Thread Davi
Em Sexta 30 Março 2007 18:55, Ian escreveu: > Parse error: syntax error, unexpected ';' in > /hxxx/x/domains/x.com/public_html/blog/labels.php on line 15 > > http://.x.com/labels'); 2 define('SEARCH_DIR','//x/domains/x.com/public_html/blog/labels'); 3 define('THIS_FIL

[PHP] Parse error help.., thanks..

2007-03-30 Thread Ian
Hi everyone, i am new to PHP, but not a programmer.., i got this php code to workout on something on my blog, but it seems that it gives me the following error: Parse error: syntax error, unexpected ';' in /hxxx/x/domains/x.com/public_html/blog/labels.php on line 15 http://.x.c

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread John Holmes
viewers can't glean any info from failed scripts like path directories and file names... ---John Holmes... > -Original Message- > From: Maxim Maletsky (PHPBeginner.com) > [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 25, 2002 11:19 AM > To: 'Nathan'; &#x

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Nathan
From: "Maxim Maletsky (PHPBeginner.com)" <[EMAIL PROTECTED]> To: "'Nathan'" <[EMAIL PROTECTED]>; "'PHP'" <[EMAIL PROTECTED]> Sent: Thursday, April 25, 2002 12:58 PM Subject: RE: [PHP] Parse Error - Help? (AGAIN) > I would agree

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Maxim Maletsky \(PHPBeginner.com\)
- > From: "Maxim Maletsky (PHPBeginner.com)" <[EMAIL PROTECTED]> > To: "'Nathan'" <[EMAIL PROTECTED]>; "'PHP'" <[EMAIL PROTECTED]> > Sent: Thursday, April 25, 2002 12:18 PM > Subject: RE: [PHP] Parse Error - Help? (AGAI

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Nathan
Message - From: "Maxim Maletsky (PHPBeginner.com)" <[EMAIL PROTECTED]> To: "'Nathan'" <[EMAIL PROTECTED]>; "'PHP'" <[EMAIL PROTECTED]> Sent: Thursday, April 25, 2002 12:18 PM Subject: RE: [PHP] Parse Error - Help? (AGAIN) You

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Maxim Maletsky \(PHPBeginner.com\)
ins > -Original Message- > From: Nathan [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 25, 2002 7:15 PM > To: PHP > Subject: Re: [PHP] Parse Error - Help? (AGAIN) > > I'll second that one... always better to code with register_globals = Off and E_ALL > report

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread 1LT John W. Holmes
> > To stop receiving the messages from undefined variables add this at top > > of your files: > > > > error_reporting(55); > > Or better yet, keep as you're doing and develop with E_ALL > and fix those E_NOTICE errors correctly! ;) Well said...don't hide and ignore the warnings...fix them. -

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread 1LT John W. Holmes
e that the variable needs to be validated, because it can be anything coming through the URL. Hope that helps. ---John Holmes... - Original Message - From: "Jason Soza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, April 25, 2002 12:33 PM Subject: Re: [PH

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Jason Soza
Yeah, I think I'd rather fix the errors rather than just not see them. I'd still know they were there and it'd bug me! Thanks everyone for your help! Jason Soza - Original Message - From: "Nathan" <[EMAIL PROTECTED]> Date: Thursday, April 25, 2002 9

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Nathan
I'll second that one... always better to code with register_globals = Off and E_ALL reporting level IMHO. # Nathan - Original Message - From: "Philip Olson" <[EMAIL PROTECTED]> To: "Maxim Maletsky (PHPBeginner.com)" <[EMAIL PROTECTED]> > To stop receiving the messages from undefined va

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Philip Olson
> To stop receiving the messages from undefined variables add this at top > of your files: > > error_reporting(55); Or better yet, keep as you're doing and develop with E_ALL and fix those E_NOTICE errors correctly! ;) Regards, Philip Olson -- PHP General Mailing List (http://www.php.net/)

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Maxim Maletsky \(PHPBeginner.com\)
5); > Thanks for your help, I'll work on my PHP listetiquette. > > Jason Soza Sincerely, Maxim Maletsky Founder, Chief Developer www.PHPBeginner.com // where PHP Begins > > - Original Message - > From: "1LT John W. Holmes" <[EMAIL PRO

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Jason Soza
d 0. Correct? Then I can use if($id) statements later on without having PHP return "Undefined Variable" errors. Right? Thanks for your help, I'll work on my PHP listetiquette. Jason Soza - Original Message - From: "1LT John W. Holmes" <[EMAIL PROTECTED]> Dat

Re: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread 1LT John W. Holmes
variable is > with normal conventions - what would cause the above error messages? I think > the one that's most disturbing is the in_array() warning, need that to work! > > Again, any help would be greatly appreciated! > > Jason > > -Original Message- > From:

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-25 Thread Ford, Mike [LSS]
> -Original Message- > From: Jason Soza [mailto:[EMAIL PROTECTED]] > Sent: 25 April 2002 05:06 > > Yike, now I wish I hadn't found it: > > [Wed Apr 24 19:42:18 2002] [error] PHP Warning: Wrong > datatype for second > argument in call to in_array in beta_up.asp on line 61 57 function e

RE: [PHP] Parse Error - Help? (AGAIN)

2002-04-24 Thread Jason Soza
ppreciated! Jason -Original Message- From: Jason Soza [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 7:56 PM To: [EMAIL PROTECTED] Subject: RE: [PHP] Parse Error - Help? Found it - just added another curly brace to the end of the code and it worked, so I searched up from there

RE: [PHP] Parse Error - Help?

2002-04-24 Thread Jason Soza
24, 2002 7:22 PM To: Jason Soza; [EMAIL PROTECTED] Subject: Re: [PHP] Parse Error - Help? Copy and paste the parse error into your e-mail. Also, try placing another "}" at the end of the code. If you're missing a closing bracket somewhere, that will take care of it. Tyler

Re: [PHP] Parse Error - Help?

2002-04-24 Thread Jason Wong
On Thursday 25 April 2002 11:20, Jason Soza wrote: > Can someone take a look at this code for me? I'm pretty new to programming, > but looking at it I think it should work. I'm not saying there aren't > plenty of errors, because I'm sure there are. I'm getting a parse error on > the last line, and

Re: [PHP] Parse Error - Help?

2002-04-24 Thread Tyler Longren
sage - From: "Jason Soza" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 10:20 PM Subject: [PHP] Parse Error - Help? > Can someone take a look at this code for me? I'm pretty new to programming, > but looking at it I think it shou

[PHP] Parse Error - Help?

2002-04-24 Thread Jason Soza
Can someone take a look at this code for me? I'm pretty new to programming, but looking at it I think it should work. I'm not saying there aren't plenty of errors, because I'm sure there are. I'm getting a parse error on the last line, and I can't see any reason for it. All of my ifs and functions

RE: [PHP] Parse error help!

2001-05-18 Thread Sam Masiello
] Subject:[PHP] Parse error help! Thanks for all the help guys but one more minor issue, i am not receiving the email that someone accessed my page...why?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Parse error help!

2001-05-18 Thread Taline Makssabo
Thanks for all the help guys but one more minor issue, i am not receiving the email that someone accessed my page...why?? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list admini

Re: [PHP] Parse error..help!

2001-05-18 Thread Greg K
Also take off the semicolon of the closing of the function } ""Taline Makssabo"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Here is another error i keep on getting, this is suppose to send me an email > each time someone enters in my website but i keep on g

Re: [PHP] Parse error..help!

2001-05-18 Thread elias
Were you a LISP programmer or something? ""Taline Makssabo"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Here is another error i keep on getting, this is suppose to send me an email > each time someone enters in my website but i keep on gettong this error

Re: [PHP] Parse error..help!

2001-05-18 Thread infoz
It should be something like: function AccessHit() { ... } -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] Parse error..help!

2001-05-18 Thread Keith Ng
8 May 2001 09:49:35 -0400 > Message-ID: <[EMAIL PROTECTED]> > MIME-Version: 1.0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > X-Priority: 3 (Normal) > X-MSMail-Priority: Normal > X-Mailer: Microsoft Outlook I

Re: [PHP] Parse error..help!

2001-05-18 Thread Keith Ng
8 May 2001 09:49:35 -0400 > Message-ID: <[EMAIL PROTECTED]> > MIME-Version: 1.0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > X-Priority: 3 (Normal) > X-MSMail-Priority: Normal > X-Mailer: Microsoft Outlook I

Re: [PHP] Parse error..help!

2001-05-18 Thread Rasmus Lerdorf
> Here is another error i keep on getting, this is suppose to send me an email > each time someone enters in my website but i keep on gettong this error > message: > > Parse error: parse error in > /home/virtual/ppcu/home/httpd/html/php2/login.php on line 8 > I don't see anything wrong, please hel

[PHP] Parse error..help!

2001-05-18 Thread Taline Makssabo
Here is another error i keep on getting, this is suppose to send me an email each time someone enters in my website but i keep on gettong this error message: Parse error: parse error in /home/virtual/ppcu/home/httpd/html/php2/login.php on line 8 I don't see anything wrong, please help.