https://www.jqueryscript.net/tags.php?/table%20export/
miércoles, 30 de marzo de 2022
jueves, 10 de marzo de 2022
css site
https://csshint.com/css-blockquotes/
martes, 8 de febrero de 2022
Dashboard template
https://colorlib.com/wp/free-bootstrap-admin-dashboard-templates/
https://athemes.com/collections/free-bootstrap-admin-templates/
sábado, 29 de enero de 2022
Online HTML editor
https://onlinehtmleditor.dev/
sábado, 15 de enero de 2022
convert date object to string
$date = new DateTime('2000-01-01');
$result = $date->format('Y-m-d H:i:s');
If format
fails for some reason, it will return FALSE
. In some applications, it might make sense to handle the failing case:
if ($result) {
echo $result;
} else { // format failed
echo "Unknown Time";
}
............Other example-----------------
printing a date time object called
$record->dateSent
$rdate = $record->dateSent->format('Y-m-d H:i:s');
lunes, 6 de diciembre de 2021
php get time zome based on current time
$date = new DateTime();
$date->setTimezone(new DateTimeZone('America/Detroit'));
echo $fdate = $date->format('Y-m-d H:i:s');
https://www.php.net/manual/en/timezones.php
https://compass.greatdata.com/areacode/currenttime
lunes, 1 de noviembre de 2021
Javascript confirmaton
<a href="delete.php?id=22" onclick="return confirm('Are you sure you want to delete?')">Link</a>
Suscribirse a:
Entradas (Atom)