<?php echo '"xx"' ?>

解决方案 »

  1.   

    <?php echo "'xx'" ?>
      

  2.   


    或者"<?echo "xx";?>"
      

  3.   

    :(
    诸位的方法都试过了,不知道是不是方法不对,但就是不行<?
    echo "document.write('<a href='html/$row[id].html' target='_blank'>$row[title]</a>');";
    ?>现在的输入结果是
    document.write('CPL特色比赛项目Halo(PC)报名情况可喜');但我想输出这样的结果
    document.write("CPL特色比赛项目Halo(PC)报名情况可喜");拜托大家了
      

  4.   

    <?
    echo "document.write(\"<a href='html/$row[id].html' target='_blank'>$row[title]</a>\");";echo "document.write(\"CPL特色比赛项目Halo(PC)报名情况可喜\");";
    ?>