Post by Goborijung at 2020-05-18 15:13:27 | ID: 557
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_syntax_highlight
Post by Goborijung at 2020-05-18 14:40:50 | ID: 552
https://www.w3schools.com/howto/tryit.asp?filename=tryhow_js_progressbar_label_js
Post by Goborijung at 2019-11-25 09:37:40 | ID: 183
<?php /* โปรแกรมคำนวน หักค่ามาสาย */ // Input $salary = 17000; $workingHr = 8; $comeLate = 1; // Process $incomePerDay = $salary/30; $incomePerHr = $incomePerDay/$workingHr; $incomePerMinute = $incomePerHr/60; $totalLate = $incomePerMinute*$comeLate; // Output echo 'เงินเดือน : '.number_format($salary); echo '<br>รายได้ต่อวัน : '.number_format($incomePerDay,2); echo '<br>รายได้ต่อชั่วโมง : '.number_format($incomePerHr,2); echo '<br>รายได้ต่อนาที : '.number_format($incomePerMinute,2); echo '<br>หักค่ามาสาย : '.number_format($totalLate,2); ?>