PHP: <tag prop="<? ?>"...

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=&lt;? echo $nextpage ?&gt;"...

IN:
      ?><? # <!--- print $tmp ---> ?><?
      $result = mysql_query($tmp, $link);
OUT:
      ?><? # <!--- print $tmp ---?>
<meta name="generator" content="HTML Tidy, see www.w3.org">
<title></title>

?&gt;<?
      $result = mysql_query($tmp, $link);

IN:
      ?><? # <!--- print $tmp ---> ?><?
      $result = mysql_query($tmp, $link);
OUT:
 <? # <!--- print $tmp ---?>
 ?&gt;<?
      $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