Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

<form method=”post” action=”. .

php”>

<input type=”text” name=”1”>blah


<input type=”radio” name=”sameasallradio” value=”1”>1
<input type=”checkbox” name=”1”> ceva worth to check
<input type=”checkbox” name=”2” checked> ceva worth to check already checked
<input type=”password”>
<input type=”submit” name=”submit” value=”Rezolva ex”>
<select name=”studii”>
<option value=”prim”>sc primara
</select>
</form>
<?php
$a=@$_REQUEST[‘name’]; ///@ face sa nu mai apara warninguri legate de ce pui dupa el
if(isset($_REQUEST[‘submit’]))
Continui
else
echo “a aparut o eroare”;
?>

<?php
session_start();
$conexiune=mysqli_connect('localhost','mysql','mysql','work');
@n=$_REQUEST(‘nume’);
?>

You might also like