Test.HTML
- Код: Выделить всё
<form action = "file://localhost/C:/testPHP/test.php" method="get">
HDD: <input type="text" name="HDD"/><br>
<input type="submit"/>
</form>
Test.PHP
- Код: Выделить всё
<script language="php">
if($HDD == «Maxtor»):
</script>
<table>
<caption> Maxtor </caption>
</table>
<script language="php">
elseif($HDD == «Seagate»):
</script>
<table>
<caption> Seagate </caption>
</table>
<script language="php"
endif;
</script>
Но, скриптовое условие в text.PHP не выполняеться - а пропускаеться и в результате на конечной странице сразу отображаеться
Maxtor
Seagate
В чём ошибка?!