This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<h1>NOTE: Be careful if using headphones</h1> | |
<h1>Original Sine Wave</h1> | |
<div><button onclick="playOriginal()">Play</button></div> | |
<hr /> | |
<h1>Amplified Sine Wave</h1> | |
<div><button onclick="playAmplified()">Play</button></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once("functions.inc"); | |
require_once("config.lib.inc"); | |
require_once("auth.inc"); | |
if ($_POST) { | |
$a_user = &$config['system']['user']; | |
unset($input_errors); | |
$pconfig = $_POST; |