-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.php
More file actions
21 lines (19 loc) · 837 Bytes
/
Copy pathtest.php
File metadata and controls
21 lines (19 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
include("includes/header.php");
?>
<h2>فرم تست ساده</h2>
<form method="post" action="action_order.php">
<input type="text" name="pro_code" value="123" readonly><br>
<input type="text" name="pro_name" value="قطعه تست"><br>
<input type="text" name="pro_qty" value="5"><br>
<input type="text" name="pro_price" value="10000"><br>
<input type="text" name="total_price" value="50000"><br>
<input type="text" name="realname" value="فرناز طربی"><br>
<input type="text" name="email" value="test@test.com"><br>
<input type="text" name="mobile" value="09123456789"><br>
<textarea name="address">آدرس تست برای پر کردن حداقل 15 کاراکتر</textarea><br>
<input type="submit" value="ارسال تست">
</form>
<?php
include("includes/footer.php");
?>