Posts

Showing posts with the label belajar php

Contoh script php lengkap

Getting the Current Date and Time <?php // get current date and time $now = getdate(); // turn it into strings $currentTime = $now["hours"] . ":" . $now["minutes"] .∝ ":" . $now["seconds"]; $currentDate = $now["mday"] . "." . $now["mon"] . "." . $now["year"]; // result: "It is now 12:37:47 on 30.10.2006" (example) echo "It is now $currentTime on $currentDate"; ?> Formatting Timestamps <?php // get date // result: "30 Oct 2006" (example) echo date("d M Y", mktime()) . " \n"; // get time // result: "12:38:26 PM" (example) echo date("h:i:s A", mktime()) . " \n"; // get date and time // result: "Monday, 30 October 2006, 12:38:26 PM" (example) echo date ("l, d F Y, h:i:s A", mktime()) . " \n"; // get time with timezone // result: "12:38:26 PM UTC&q