HTML interesse |
|
<?php
<form method=\"post\" action=\"$_SERVER['PHP_SELF']\">
<input type=\"text\" name=\"text\">
<input type=\"submit\" name=\"submit\" value=\"submit\">
echo"$_POST['text']";
?>
<?php <form method=\"post\" action=\"$_SERVER['PHP_SELF']\"> <input type=\"text\" name=\"text\"> <input type=\"submit\" name=\"submit\" value=\"submit\"> echo"$_POST['text']"; ?>
Ik krijg deze error:
Error on line 3
Wat is hier fout aan?
|