- From: Mike Mestnik <cheako911@yahoo.com>
- Date: Thu, 10 Mar 2005 18:36:19 -0800 (PST)
- To: html-tidy@w3.org
All files start with "<?php" after seeing this in bytes 0 - 5, don't
change '<?' or '?>'. Nuff said.
IN:
<form action="?section=<? echo $nextpage ?>" method="post">
OUT:
<form action="?section=<? echo $nextpage ?>"...
IN:
?><? # <!--- print $tmp ---> ?><?
$result = mysql_query($tmp, $link);
OUT:
?><? # <!--- print $tmp ---?>
<meta name="generator" content="HTML Tidy, see www.w3.org">
<title></title>
?><?
$result = mysql_query($tmp, $link);
IN:
?><? # <!--- print $tmp ---> ?><?
$result = mysql_query($tmp, $link);
OUT:
<? # <!--- print $tmp ---?>
?><?
$result = mysql_query($tmp, $link);
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
Received on Sunday, 13 March 2005 02:42:01 UTC