อยากจะรบกวนสอบถามค่ะพอดีติดปัญหา Code php รันแล้วไม่ผ่านการส่งค่า Form แบบ GET
Form
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; Charset=UTF8">
<title>แปลงเลขไทย</title>
</head>
<body>
<H1>แปลงเลขไทย</H1>
<H4>กรุณากรอกตัวเลขที่ต้องการแปลง</H4>
<form method "GET" action="shownum.php">
<table border="0" align="left" width="60%">
<tr>
<td align="right">ตัวเลข</td>
<td><input type="text "name="num"></td><BR>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Send">
<input type="reset" value="Clear">
</td>
</tr>
</table>
</form>
</body>
</html>
ไฟล์ PHP
<?php
$num = $_GET ["num"];
echo "$snum";
?>
รบกวนกูรู ผู้รู้ ภาษา PHP ช่วยชี้แนะ
Form
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" Content="text/html; Charset=UTF8">
<title>แปลงเลขไทย</title>
</head>
<body>
<H1>แปลงเลขไทย</H1>
<H4>กรุณากรอกตัวเลขที่ต้องการแปลง</H4>
<form method "GET" action="shownum.php">
<table border="0" align="left" width="60%">
<tr>
<td align="right">ตัวเลข</td>
<td><input type="text "name="num"></td><BR>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" value="Send">
<input type="reset" value="Clear">
</td>
</tr>
</table>
</form>
</body>
</html>
ไฟล์ PHP
<?php
$num = $_GET ["num"];
echo "$snum";
?>