cavendano Posted September 14, 2007 Share Posted September 14, 2007 I have a script that semi-works the problem lies in the posting of variables if ($_POST[d1] == "lmp3"){ exec("lame --decode $newfile $wav_name"); if ($_POST[d1] == "hmp3"){ exec("lame --decode $newfile $wav_name"); when we get to the end I need for it to state whether it was lmp3 or hmp3. Quote Link to comment Share on other sites More sharing options...
Jessica Posted September 14, 2007 Share Posted September 14, 2007 print $_POST['dl']; Quote Link to comment Share on other sites More sharing options...
phat_hip_prog Posted September 14, 2007 Share Posted September 14, 2007 if (strcmp($_POST[d1], "lmp3") == 0){ exec("lame --decode $newfile $wav_name"); echo "lmps<br>"; } elseif (strcmp($_POST[d1], "hmp3") == 0) { exec("lame --decode $newfile $wav_name"); echo "hmp3<br>"; } Is that what your after? Quote Link to comment Share on other sites More sharing options...
cavendano Posted September 14, 2007 Author Share Posted September 14, 2007 maybe I just need to explain myself a little better. This is what happens a user uploads an mp3 file and is able to trim it and convert it to other formats online. User uploads MP3 -Trims Selection Chooses different format to convert to or can keep the same format just trimmed. - Creates Mp3, Mp4, Wav User hits create and page is supposed to post the new file with extension but what is happening is the file is created but the download link is wrong. So if user uploads mysong.mp3 and wants mysong.wav as the output the song mysong.wav is created on my server but the file that is echoed to download is mysong.mp3. I already tried getting fileext but it keeps posting the mp3 one as that was the initial upload Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.