/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<? $fID = $_GET['id']; ?> <p> Add a class to the IT Department of hofstra!</p> <form name="form1" method="post" action="insertclass.php?id=<? echo $fID;?>"> <p> <label for="name">Course Code</label> <input type="text" name="coursecode" id="coursecode"> <label for="time"><br> Time [HH:MM]</label> <input type="text" name="time" id="time"> <label for="day"><br> Days [MWF] OR [TTH] ONLY </label> <select name="day" size="1" id="days"> <option value="MWF">MWF</option> <option value="TTH">TTH</option> </select> <br> <input type="submit" name="submit" id="submit" value="Submit"> </p> </form>