<!-- Contributed by Scott Schreckengaust -->
<?php
$msg 
"";
$code 1;
$tmpFile=$HTTP_POST_FILES['personal_greeting']['tmp_name'];
if (
is_uploaded_file($tmpFile)) 
{
  
$file_name date("mdHi");
  
$wavfile="wav/" $file_name ".wav";
  
copy($tmpFilesprintf("%s",$wavfile));
  
$msg "audio saved";
  include(
"basic_att_mail.php");

else 
{
  
$code 0;
  
$msg "unable to save audio";
}
?>

<vxml version="2.1">
<form>
<var name="code" expr="'<?=$code?>'"/>
<var name="msg" expr="'<?=$msg?>'"/>
<var name="file" expr="'<?=$file_name?>'"/>
<block>
<break size="medium"/>
<value expr="msg"/>
<break size="medium"/>
<audio expr="'wav/' + file + '.wav'">your greeting</audio>
</block>
</form>
</vxml>