⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 prefs.php

📁 《php程序设计》的配套源码 《php程序设计》的配套源码 《php程序设计》的配套源码 《php程序设计》的配套源码
💻 PHP
字号:
<?php
  // this is prefs.php
  $colors = array('black' => '#000000',
                  'white' => '#ffffff',
                  'red'   => '#ff0000',
                  'blue'  => '#0000ff');
  $bg_name = $_POST['background'];
  $fg_name = $_POST['foreground'];
  setcookie('bg', $colors[$bg_name]);
  setcookie('fg', $colors[$fg_name]);
?>
<html>
<head><title>Preferences Set</title></head>
<body>

Thank you.Your preferences have been changed to:<br />
Background:<?= $bg_name ?><br />
Foreground:<?= $fg_name ?><br />
Click <a href="prefs-demo.php">here</a>to see the preferences
in action.

</body>
</html>

⌨️ 快捷键说明

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