first commit

This commit is contained in:
schwaral
2022-11-25 07:07:16 +01:00
commit c086b964da
3188 changed files with 1063828 additions and 0 deletions

10
stud/test2.php Normal file
View File

@ -0,0 +1,10 @@
<?php
echo"
<form action=''>
<select disabled>
<option value='Test'>Test</option>
</select>
<input type='checkbox' onclick='if(this.checked){document.forms[0].elements[0].disabled=false} else {document.forms[0].elements[0].disabled=true}'>
</form>";
?>