Once again, its me. I cant seem to get what I want from one form to another. I post it to the page that i want it to go to, and i can see some info that was posted, but, grrr nevermind, ill just show you the code.
---------form.php--------------
//first form to fill out
....some code
<input type="checkbox" name="Monday_7am" value="Avaliable"> //regular html form
---------form2.php--------------
//second form. First form's variables are carried over. The first few lines of code has hidden fields.
...some html
<input type="hidden" name="Monday_7am" value="<?php echo"$Monday_7am" ?>">
Now shouldnt the code in form2.php (the value) show 'Avaliable' ??