在我的PHP代码中有语法错误

时间:2017-03-01 17:33:45

标签: php

如果您在第7行测试我遇到语法错误,那么我的代码会出现一些错误,这是我的代码的一部分。我想把PHP放在PHP代码中

<?php
$stringData = "

    <div > " .$strin. " </div>

    <?php
    $width = $_GET['width'];
    $heigh = $_GET['height'];

        echo '<script type=\"text/javascript\" src=\"example.com/page.php?width='.$width.'&height='.$heigh.'\"></script>';

    ?>

    ";
?>

我的代码将另一个php中的php代码转发到另一个页面,但我不知道如何将它当前放在php中。我在某些地方使用了\"

1 个答案:

答案 0 :(得分:0)

替换

<?php
$stringData = "

    <div > " .$strin. " </div>

    <?php
    $width = $_GET['width'];
    $heigh = $_GET['height'];

        echo '<script type=\"text/javascript\" src=\"example.com/page.php?width='.$width.'&height='.$heigh.'\"></script>';

    ?>

    ";
?>

并使用以下内容:

$stringData = "<div > " .$strin. " </div>";
$width = $_GET['width'];
$heigh = $_GET['height'];
echo '<script type="text/javascript" src="example.com/page.php?width='.$width.'&height='.$heigh.'"></script>';