<option value="Chat">Chat</option> </select><br><br> <label for="web">Web:</label><br><br> <select name="web"> <?php $web = new web(); $web->select(); ?> </select><br><br> <label for="subject">Subject:</label><br><br> <select name="subject"> <?php $subject = new subject(); $subject->select(); ?> </select><br><br> <label for="duration">Duration:</label><br><br> <select name="minutes"> <?php printTime(); ?> </select>: <select name="seconds"> <?php printTime(); ?>
>Chat</option> </select><br><br> <label for="web">Web:</label><br><br> <select name="web"> <?php $web = new web(); $web->select($info['web']); ?> </select><br><br> <label for="subject">Subject:</label><br><br> <select name="subject"> <?php $subject = new subject(); $subject->select($info['subject']); ?> </select><br><br> <label for="duration">Duration:</label><br><br> <select name="minutes"> <?php $minutes = (int) ($info['duration'] / 60); printTime($minutes); ?> </select>: <select name="seconds"> <?php $seconds = (int) ($info['duration'] % 60); printTime($seconds);