RE: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread Hutchins, Richard
Speaking for myself only, I'm probably going to need to see more code than
this to be able to help. These two lines appear to be OK. The error might be
in what feeds line 187.

 -Original Message-
 From: Dillon, John [mailto:[EMAIL PROTECTED]
 Sent: Thursday, November 20, 2003 9:16 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP-DB] Parse error on array and SQL query
 
 
 
 On line 188 and similar:
   line 187$this=$altIDs[$i]; 
   line 188$query .= ID='$this'; 
 
 I get the error: Parse error: parse error in
 /home/jdillon/public_html/provreport.php on line 188
 
 Could this be because some setting has been changed on my shared host?
 
 John
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
    http://www.cantor.com
 CONFIDENTIAL: This e-mail, including its contents and 
 attachments, if any, are confidential. If you are not the 
 named recipient please notify the sender and immediately 
 delete it. You may not disseminate, distribute, or forward 
 this e-mail message or disclose its contents to anybody else. 
 Copyright and any other intellectual property rights in its 
 contents are the sole property of Cantor Fitzgerald.
  E-mail transmission cannot be guaranteed to be secure or 
 error-free. The sender therefore does not accept liability 
 for any errors or omissions in the contents of this message 
 which arise as a result of e-mail transmission.  If 
 verification is required please request a hard-copy version.
  Although we routinely screen for viruses, addressees 
 should check this e-mail and any attachments for viruses. We 
 make no representation or warranty as to the absence of 
 viruses in this e-mail or any attachments. Please note that 
 to ensure regulatory compliance and for the protection of our 
 customers and business, we may monitor and read e-mails sent 
 to and from our server(s). 
 
 For further important information, please read the  Important 
 Legal Information and Legal Statement at 
 http://www.cantor.com/legal_information.html
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread Dillon, John
My host provider suggested escaping the SQL: $query .= ID=\'$this\'; which
gets rid of the php error but gives invalid SQL.  After a few exchanges with
them it suddenly worked again as: $query .= ID='$this';.

-Original Message-
From: Hutchins, Richard [mailto:[EMAIL PROTECTED]
Sent: 20 November 2003 14:43
To: 'Dillon, John'; [EMAIL PROTECTED]
Subject: RE: [PHP-DB] Parse error on array and SQL query


Speaking for myself only, I'm probably going to need to see more code than
this to be able to help. These two lines appear to be OK. The error might be
in what feeds line 187.

 -Original Message-
 From: Dillon, John [mailto:[EMAIL PROTECTED]
 Sent: Thursday, November 20, 2003 9:16 AM
 To: [EMAIL PROTECTED]
 Subject: [PHP-DB] Parse error on array and SQL query
 
 
 
 On line 188 and similar:
   line 187$this=$altIDs[$i]; 
   line 188$query .= ID='$this'; 
 
 I get the error: Parse error: parse error in
 /home/jdillon/public_html/provreport.php on line 188
 
 Could this be because some setting has been changed on my shared host?
 
 John
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
    http://www.cantor.com
 CONFIDENTIAL: This e-mail, including its contents and 
 attachments, if any, are confidential. If you are not the 
 named recipient please notify the sender and immediately 
 delete it. You may not disseminate, distribute, or forward 
 this e-mail message or disclose its contents to anybody else. 
 Copyright and any other intellectual property rights in its 
 contents are the sole property of Cantor Fitzgerald.
  E-mail transmission cannot be guaranteed to be secure or 
 error-free. The sender therefore does not accept liability 
 for any errors or omissions in the contents of this message 
 which arise as a result of e-mail transmission.  If 
 verification is required please request a hard-copy version.
  Although we routinely screen for viruses, addressees 
 should check this e-mail and any attachments for viruses. We 
 make no representation or warranty as to the absence of 
 viruses in this e-mail or any attachments. Please note that 
 to ensure regulatory compliance and for the protection of our 
 customers and business, we may monitor and read e-mails sent 
 to and from our server(s). 
 
 For further important information, please read the  Important 
 Legal Information and Legal Statement at 
 http://www.cantor.com/legal_information.html
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread John W. Holmes
Dillon, John wrote:

On line 188 and similar:
	line 187		$this=$altIDs[$i]; 
	line 188		$query .= ID='$this'; 

I get the error: Parse error: parse error in
/home/jdillon/public_html/provreport.php on line 188
Could this be because some setting has been changed on my shared host?
$this is normally used in object oriented programming to signify the 
current object. That may be causing the trouble. I'd use another 
variable than $this.

--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals  www.phparch.com

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread Dillon, John

Dillon, John wrote:

 On line 188 and similar:
   line 187$this=$altIDs[$i]; 
   line 188$query .= ID='$this'; 
 
 I get the error: Parse error: parse error in
 /home/jdillon/public_html/provreport.php on line 188
 
 Could this be because some setting has been changed on my shared host?

$this is normally used in object oriented programming to signify the 
current object. That may be causing the trouble. I'd use another 
variable than $this.

-- 
---John Holmes...


Tried that, doesn't work with:

$query=INSERT INTO ReplyTbl VALUES (' . $monster1 . ', ' . $monster2 .
', ' . $monster3 . ', NULL, NULL);

Don't suppose they use 'monster' as a reserved word...

but the similar code works in another file.

John


http://www.cantor.com
CONFIDENTIAL: This e-mail, including its contents and attachments, if any, are 
confidential. If you are not the named recipient please notify the sender and 
immediately delete it. You may not disseminate, distribute, or forward this e-mail 
message or disclose its contents to anybody else. Copyright and any other intellectual 
property rights in its contents are the sole property of Cantor Fitzgerald.
 E-mail transmission cannot be guaranteed to be secure or error-free. The sender 
therefore does not accept liability for any errors or omissions in the contents of 
this message which arise as a result of e-mail transmission.  If verification is 
required please request a hard-copy version.
 Although we routinely screen for viruses, addressees should check this e-mail and 
any attachments for viruses. We make no representation or warranty as to the absence 
of viruses in this e-mail or any attachments. Please note that to ensure regulatory 
compliance and for the protection of our customers and business, we may monitor and 
read e-mails sent to and from our server(s). 

For further important information, please read the  Important Legal Information and 
Legal Statement at http://www.cantor.com/legal_information.html

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread John W. Holmes
Dillon, John wrote:

 Tried that, doesn't work with:

 $query=INSERT INTO ReplyTbl VALUES (' . $monster1 . ', ' .
 $monster2 .
 ', ' . $monster3 . ', NULL, NULL);

 Don't suppose they use 'monster' as a reserved word...
How does it not work again??

--
---John Holmes...
Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals  www.phparch.com

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP-DB] Parse error on array and SQL query

2003-11-20 Thread Hutchins, Richard
If you're not getting the parse error anymore, I'd suggest you echo $query
to the browser and check to see that the SQL statement is what you expect it
to be. Can't count the number of times doing that has pointed out some stray
apostrophe or comma or something that killed the query.

 -Original Message-
 From: John W. Holmes [mailto:[EMAIL PROTECTED]
 Sent: Thursday, November 20, 2003 1:09 PM
 To: Dillon, John
 Cc: [EMAIL PROTECTED]
 Subject: Re: [PHP-DB] Parse error on array and SQL query
 
 
 Dillon, John wrote:
 
   Tried that, doesn't work with:
  
   $query=INSERT INTO ReplyTbl VALUES (' . $monster1 . ', ' .
   $monster2 .
   ', ' . $monster3 . ', NULL, NULL);
  
   Don't suppose they use 'monster' as a reserved word...
 
 How does it not work again??
 
 -- 
 ---John Holmes...
 
 Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/
 
 php|architect: The Magazine for PHP Professionals – www.phparch.com
 
 -- 
 PHP Database Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php