dousha7645 2014-04-15 14:54
浏览 24
已采纳

PHP与HTML - 解析错误:语法错误,意外'其他'(T_ELSE)

I have a problem with this code. I see other questions on this, but continued without find the mistake. This code work in other computer, but now is giving me problems in my computer. Here is my code, i hope than help me....

        <?PHP 
        include "conexion.php";
        $fecha = date('Y-m-j');
        $ayer = strtotime ( '-1 day' , strtotime ( $fecha ) ) ;
        $ayer = date ( 'Y-m-j' , $ayer );
        $hacedias = strtotime ( '-8 day' , strtotime ( $fecha ) ) ;
        $hacedias = date ( 'Y-m-j' , $hacedias );
        $consulta = "SELECT date_format(fecha,'%d %M') AS FECHA, round((SUM(`TotalMinutos`)/60),1) FROM reporte WHERE  ingeniero ='". $_SESSION['id']."' AND fecha BETWEEN  '$hacedias' AND  '$ayer' GROUP BY fecha";
        $rs = mysql_query($consulta,$conexion);
        if(mysql_num_rows($rs)!=0){
        ?>
        <p></p>
        <p></p>
        <table border="0" cellpadding="1" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100">
            <tr><?PHP
                    $i = 0;
                    while ($reg=mysql_fetch_array($rs)){ 
                    if($i == 8){
                      echo "</tr><tr>";
                      $i = 0;
                    }?>
                <td width="100">
                    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="150">
                      <tr> <td width="80"><B><?=$reg['FECHA']?></B></td>  </tr>
                      <tr> <td width="80"><?=$reg['round((SUM(`TotalMinutos`)/60),1)']?> Horas</td>  </tr>
                    </table>
                </td>
                <?
                $i++;
                }
                ?>
            </tr>
            </table>
            <p>
            <?PHP 
                }else{echo "<h3><p style='color:#FF0000'>ATENCION!!! <br>No has registrado tus tiempos en los ultimos 5 dias.</p></h3>"; }?></table>

Thank you for you help...

  • 写回答

1条回答 默认 最新

  • dongyou2305 2014-04-15 15:02
    关注

    lost semicolon on <?=$reg['FECHA']; ?> and <?=$reg['round((SUM(TotalMinutos)/60),1)']; ?>

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 java 的protected权限 ,问题在注释里
  • ¥15 这个是哪里有问题啊?