prefs-demo.php

来自「《php程序设计》的配套源码 《php程序设计》的配套源码 《php程序」· PHP 代码 · 共 16 行

PHP
16
字号
<html>
<!-- this is prefs-demo.php -->
<head><title>Front Door</title></head>
<?php
  $bg = $_COOKIE['bg'];
  $fg = $_COOKIE['fg'];
?>

<body bgcolor="<?= $bg ?>" text="<?= $fg ?>">
<h1>Welcome to the Store</h1>
We have many fine products for you to view.  Please feel free to browse
the aisles and stop an assistant at any time.  But remember, you break it
you bought it!<p>
Would you like to <a href="prefs.html">change your preferences?</a>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?