文、意如
在網頁html中印出變數
在網頁html中印出session變數
在網頁html中印出變數
在radio的選項使用php的陣列變數
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>mytest</title>
</head>
<body>
<?php
$mytype=array('白', '綠', '紅', '黃');
?>
<form method="post" action="">
<input type="radio" name="color" value="0" checked><?php echo $mytype[0]; ?><br>
<input type="radio" name="color" value="1"><?php echo $mytype[1]; ?><br>
<input type="radio" name="color" value="2"><?php echo $mytype[2]; ?><br>
<input type="radio" name="color" value="3"><?php echo $mytype[3]; ?><br>
<input type="submit">
</form>
</body>
</html>
在網頁html中印出session變數
<?php session_start(); ?>
<html>
<head>
<title>mytest</title>
</head>
<body>
<?php
if (!isset($_SESSION['Count']))
$_SESSION['Count'] = 1;
else
$_SESSION['Count']++;
echo "這是您在同一個瀏覽器第{$_SESSION['Count']}次載入本網頁!";
?>
<h2>這是您在同一個瀏覽器第<?php echo $_SESSION['Count']; ?>次載入本網頁!
<!--在html中使用php印出變數-->
</body>
</html>
Yiru@Studio - 關於我 - 意如