Blame view

html/Oscilloscope/CH2/3_Unite/form_unite.php 386 Bytes
c825216f   lwadbled   feat(main.php): R...
1
2
3
4
5
6
7
8
9
10
  <!DOCTYPE html>
  <html>
  	<form method="post" action="main.php">
  		<label for="c2_unit">Unité CH2 :</label>
  		<select id="c2_unit" name="c2_unit" onchange="this.form.submit();">
  			<option value="V" <?php if(strpos($c2u,"V")!=false) echo "selected" ?> >Volt</option>
  			<option value="A" <?php if(strpos($c2u,"A")!=false) echo "selected" ?> >Ampere</option>
  		</select>
  	</form>
  </html>