標籤:style class blog c code java
----- 013-form.html -----
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=utf-8"> 5 <title>一個PHP網頁</title> 6 </head> 7 <body> 8 <center> 9 <form action="013-cookie.php">10 使用者名稱:<input type="text" name="username"/><br/>11 密 碼:<input type="text" name="password"/><br/>12 <input type="submit" name="submit" value="登入"/>13 <input type="reset" name="reset" value="重設"/>14 </form>15 </center>16 </body>17 </html>
----- 013-cookie.php -----
1 <?php 2 setcookie("username", $_GET[‘username‘], time()+3600); 3 setcookie("password", $_GET[‘password‘], @mktime(0,0,0,1,1,2015));//UNIX時間戳記 2015.1.1到期 4 //設定Cookie前不可以傳送任何一個字元甚至是一個空格 5 ?> 6 <!DOCTYPE html> 7 <html> 8 <head> 9 <meta http-equiv="content-type" content="text/html; charset=utf-8">10 <title>一個PHP網頁</title>11 </head>12 <body>13 <?php14 print_r($_COOKIE);echo "<br/>";15 print_r($_GET);16 echo "現在的Cookie內容是:<br>";17 echo "使用者名稱:", $_COOKIE[‘username‘], "<br/>";18 echo "密碼:", $_COOKIE[‘password‘], "<br/>";19 ?>20 </body>21 </html>