0

我有两个文件settings.phpmain.php. 在 main.php 中,有背景音乐播放,我知道不是每个人都会喜欢,但有些人会喜欢。

<bgsound src="theme.mp3" loop="5">

在设置中,有一个带有两个单选按钮的表单可以打开或关闭它,但我不知道该怎么做。

<form id="form1" name="form1" method="post" action="">
  <fieldset>
  <legend>Application Settings</legend>
  <p>

  Background Music
    <label> <br />
    <input type="radio" name="Background Music" value="yes" id="Background Music_0" />
On</label>
    <br />
    <label>
     <input type="radio" name="Background Music" value="no" id="Background Music_1" />
 Off</label>
</form>

当用户返回 main.php 时,关闭背景音乐的最佳方法是什么?

4

1 回答 1

0

我会在用户登录后立即将所有内容存储在会话中。更改设置时,数据库和会话都应该更新,并且要在其中添加音乐,只需检查适当的会话变量即可。

于 2013-04-12T01:04:06.617 回答