php 和 html 怎么 结合的
3个回答
展开全部
<!--这里模拟了后台传输的数据-->
<?php
$title = "这是一个标题";
$type = array("html","css","js","php");
$data = "这是一条数据";
$content = "这是内容";
?>
<!--这里是前端代码-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><?php echo $title; ?></title>
</head>
<body>
<ul>
<?php foreach ($type as $value){echo "<li>$value</li>";} ?>
</ul>
<h1><?php echo $data; ?></h1>
<div><?php echo $content; ?></div>
</body>
</html>
<?php
$title = "这是一个标题";
$type = array("html","css","js","php");
$data = "这是一条数据";
$content = "这是内容";
?>
<!--这里是前端代码-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title><?php echo $title; ?></title>
</head>
<body>
<ul>
<?php foreach ($type as $value){echo "<li>$value</li>";} ?>
</ul>
<h1><?php echo $data; ?></h1>
<div><?php echo $content; ?></div>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
html页面嵌套php
<div class="c2">
<input type="text" name="name" value="<?php echo 123; ?>" class="text" style="width: 400px;" onKeyUp="this.className='text';expert_info.text_length(this,15);" onfocus="this.className='text2'" />
<span id="expert_name_tips" style="color: #ccc;font-size: 12px;font-weight: normal;"></span>
</div>
<div class="c2">
<input type="text" name="name" value="<?php echo 123; ?>" class="text" style="width: 400px;" onKeyUp="this.className='text';expert_info.text_length(this,15);" onfocus="this.className='text2'" />
<span id="expert_name_tips" style="color: #ccc;font-size: 12px;font-weight: normal;"></span>
</div>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询