I'm getting a server set up. I'm running Red Hat 9, PHP 4.2.2.
When I run a form to submit data the variables don't seem to carry over. My form:
<form action="csoradioadd" method="post">
Title: <input type="text" name="title"><br>
Lo-Fi Real Audio URL: <input type="text" name="lofirealurl"><br>
Hi-Fi Real Audio URL: <input type="text" name="hifirealurl"><br>
Lo-Fi MP3 URL: <input type="text" name="lofimp3url"><br>
Hi-Fi MP3 URL: <input type="text" name="hifimp3url"><br>
<input type="submit" value="submit"></form>
Then an output page:
echo "LO REAL $lofirealurl<br>\n";
echo "HI REAL $hifirealurl<br>\n";
echo "LO MP3 $lofimp3url<br>\n";
echo "HI REAL $hifirealurl<br>\n";
The variables are coming out as blank. Am I blind and missing something, or has something changed in 4.2.2 that I need to be aware of?