$id=3
echo "<form id='form1' name='form1' method='post' action='add.php?id=$id'>"
//或
echo '<form id="form1" name="form1" method="post" action="dd.php?id=
'.$id.'">'
?>
//或
<form id="form1" name="form1" method="post" action="add.php?id=<?php echo $id?>">
通过session来储存<?phpsession_start()
$_SESSION['username'] = "userName"?>
在其它页面直接取出就行了
<?
session_start()
echo $_SESSION['username']
?>
通过url传向其它页面传递参数
other.php?user=xxx
或在php重定向到其它页面时
$username = "xxx"
$home_url = 'logIn.php?user='.$username header('Location:'.$home_url)
其它页面用$_GET["user"]来接收
3.通过表单向其它页面传送参数
其它页面用$_POST["user"]来接收
HTML在需要静态数值 的时候直接 使用 php 输出就可以了 要注意字符转意比如 html:
<span ><? $a="提示"echo $a ?></span>
js
var v1=<? $a="提示"echo $a ?>
动态的 就需要 AJAX 后台去数据 后赋值给前台节点了