Re: [PHP] Troubleshooting syntax ?

2001-07-04 Thread Kurt Lieber

That domain name doesn't appear to be valid.  Perhaps you meant:

http://validator.w3.org ?

--kurt

- Original Message -
From: Christian Reiniger [EMAIL PROTECTED]
To: Jack Sasportas [EMAIL PROTECTED]; php
[EMAIL PROTECTED]
Sent: Wednesday, July 04, 2001 3:19 AM
Subject: Re: [PHP] Troubleshooting syntax ?


On Tuesday 03 July 2001 22:17, Jack Sasportas wrote:

 Can anyone suggest a tool / web site etc, that helps you check the html
 code for the missing / wrong syntax so that it is spotted quickly like
 making it red or something, instead of reading through hundreds of
 lines of code, hopefully catching the problem?

http://validator.w3c.org/

--
Christian Reiniger
LGDC Webmaster (http://lgdc.sunsite.dk/)

The use of COBOL cripples the mind; its teaching should, therefore,
be regarded as a criminal offence.

- Edsger W. Dijkstra

--
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]




-- 
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] Troubleshooting syntax ?

2001-07-04 Thread Christian Reiniger

On Wednesday 04 July 2001 16:58, Kurt Lieber wrote:
 That domain name doesn't appear to be valid.  Perhaps you meant:

 http://validator.w3.org ?

Um, yes. Why can't the w3c simply have w3c as domain name? *sigh*


 http://validator.w3c.org/

-- 
Christian Reiniger
LGDC Webmaster (http://lgdc.sunsite.dk/)

Pretty cool, the kind of power information technology puts in our hands
these days.

- Securityfocus on probing 3600 hosts for known problems in 3 weeks

--
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]




[PHP] Troubleshooting syntax ?

2001-07-03 Thread Jack Sasportas

OK I'm sure we've all run into this fun problem.
Sometimes we forget a /table etc, from our html, and our friend
Netscape doesn't display anything if the syntax is wrong or missing.  IE
on the other hand assumes what you are doing and displays it fine.

Can anyone suggest a tool / web site etc, that helps you check the html
code for the missing / wrong syntax so that it is spotted quickly like
making it red or something, instead of reading through hundreds of lines
of code, hopefully catching the problem?

Thanks

--
___
Jack Sasportas
Innovative Internet Solutions
Phone 305.665.2500
Fax 305.665.2551
www.innovativeinternet.com
www.web56.net



-- 
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] Troubleshooting syntax ?

2001-07-03 Thread Johnson, Kirk

I do a View Source on all my generated pages, save it as a file, then run
the file through Arachnophilia's tag checker. It reports missing tags and
line numbers where there are errors. Arachnophilia is careware, I have
used it for a long time. There are doubtless other programs that will do
this as well.

Kirk

 -Original Message-
 From: Jack Sasportas [mailto:[EMAIL PROTECTED]]
 Sent: Tuesday, July 03, 2001 2:17 PM
 To: php
 Subject: [PHP] Troubleshooting syntax ?
 
 
 OK I'm sure we've all run into this fun problem.
 Sometimes we forget a /table etc, from our html, and our friend
 Netscape doesn't display anything if the syntax is wrong or 
 missing.  IE
 on the other hand assumes what you are doing and displays it fine.
 
 Can anyone suggest a tool / web site etc, that helps you 
 check the html
 code for the missing / wrong syntax so that it is spotted quickly like
 making it red or something, instead of reading through 
 hundreds of lines
 of code, hopefully catching the problem?
 
 Thanks
 
 --
 ___
 Jack Sasportas
 Innovative Internet Solutions
 Phone 305.665.2500
 Fax 305.665.2551
 www.innovativeinternet.com
 www.web56.net
 
 
 
 -- 
 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]
 

-- 
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] Troubleshooting syntax ?

2001-07-03 Thread Matthew Loff


I can't suggest any syntax checkers off-hand, but a suggestion for
future work...

I keep track of TABLE, TR, TD, etc. by indenting them like PHP/C code...
Perhaps that would alleviate this from happening again in the future for
you...

TABLE
TR
TD

/TD
/TR
/TABLE

Like that...  I rarely miss /TABLE tags that way.

Good luck finding that missing tag... 


-Original Message-
From: Jack Sasportas [mailto:[EMAIL PROTECTED]] 
Sent: Tuesday, July 03, 2001 4:17 PM
To: php
Subject: [PHP] Troubleshooting syntax ?


OK I'm sure we've all run into this fun problem.
Sometimes we forget a /table etc, from our html, and our friend
Netscape doesn't display anything if the syntax is wrong or missing.  IE
on the other hand assumes what you are doing and displays it fine.

Can anyone suggest a tool / web site etc, that helps you check the html
code for the missing / wrong syntax so that it is spotted quickly like
making it red or something, instead of reading through hundreds of lines
of code, hopefully catching the problem?

Thanks

--
___
Jack Sasportas
Innovative Internet Solutions
Phone 305.665.2500
Fax 305.665.2551
www.innovativeinternet.com
www.web56.net



-- 
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]


-- 
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] Troubleshooting syntax ?

2001-07-03 Thread mike cullerton

http://www.nestegg.net/validate.html

on 7/3/01 2:17 PM, Jack Sasportas at [EMAIL PROTECTED] wrote:

 Can anyone suggest a tool / web site etc, that helps you check the html
 code for the missing / wrong syntax so that it is spotted quickly like
 making it red or something, instead of reading through hundreds of lines
 of code, hopefully catching the problem?


-- mike cullerton   [EMAIL PROTECTED]



-- 
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]