У меня есть простой HTML-файл с кодом ниже. Он вызывает submitform.php. Но ничего не отображается. Есть идеи?
<html>
<body>
<form action=submitform.php method=GET>
First Name: <input type=text name=first_name size=25 maxlength=25>
Last Name: <input type=text name=last_name size=25 maxlength=25>
<p>
<input type=submit>
</form>
</body>
</html>
php код в submitform.php:
<html>
<body>
<?php
print ($first_name);
echo $first_name;
print (" ");
print ($last_name);
print ("<p>");
print ("Thanks for submitting your name.");
?>
</body>
</html>
Спасибо!