douqiao2008 2018-07-19 07:16
浏览 90
已采纳

如何在echo php中的html表单中显示php变量详细信息?

I have a form in which some I have defined some variables in PHP, The question is I need these variables details inside an html which is inside an echo . I don't know what to do as I have tried it.

   <?php $var= "LOVE" ?>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
 <?php echo "<!DOCTYPE html>
<html>
<head>
<title>Details</title>
</head>
<body>  
<div > <h1> echo $var ;</h1></div>
</body>
</html>";?>
</body>
</html>
  • 写回答

2条回答 默认 最新

  • dongxi8297 2018-07-19 07:18
    关注
    <?php $var= "LOVE"; ?>
    <!DOCTYPE html>
    <html>
        <head>
            <title>Page Title</title>
        </head>
        <body>
            <?php echo "
            <!DOCTYPE html>
            <html>
                <head>
                    <title>Details</title>
                </head>
                <body>
                    <div >
                        <h1>".$var."</h1>
                    </div>
                </body>
            </html>";?>
        </body>
    </html>
    

    There is no need of adding <html>,<body> tags inside another. There is already one above in your code. I do not know why you have used this pattern.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?