Hi there 🙂
3 days ago everything was fine and I used forms and they worked properly but now every form I create is not sending data to PHP
<form action="form.php" method="get" >
<input type="text" id="data" />
<input type="submit" />
</form>
<?php
$data = filter_input (INPUT_GET, "data");
print "$data";
?>
I think it's ok but it's not working.
Sorry for my bad english