ขอ code php หรือ วิธีสร้างฟอร์มแบบรับค่าเป็นปีอย่างเดียวด้วยครับ
ง่ายๆ อย่างนี้เลยเหรอครับ ไม่คิดจะอ่านคู่มือวิธีการเขียนโปรแกรมอะไรเลยเหรอ
ไปตรงนี้ก่อนดีกว่าไหม
https://www.thaicreate.com/php.html
Date :
2021-05-21 19:37:20
By :
Chaidhanan
ดูแล้วก็เห็นเฉพาะ date , month, week ครับ ไม่เห็นที่เป็นปี รบกวนแนะนำด้วยครับ
Date :
2021-05-21 21:25:56
By :
npolkhet
input text หรือ number หรือ select ก็ง่ายดี
Code (PHP)
<?php $years = range(1900, strftime("%Y", time())); ?>
<select>
<option>Select Year</option>
<?php foreach($years as $year) : ?>
<option value="<?php echo $year; ?>"><?php echo $year; ?></option>
<?php endforeach; ?>
</select>
@SO
คัดมาให้ ไม่ได้คิดเอง
Date :
2021-05-21 21:41:29
By :
พญามัจจุราช
Load balance : Server 03