Пример #1
0
							<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();
?>
						
Пример #2
0
>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);