VultureCSSCore versione 0.2.3 beta released!

VultureCSSCore versione 0.2.3 beta released! We added jStyleParser as a secondary parser to recover CSS files that non-ph-css fails to parser. github.com/DotMaui/VultureCSSCore We have also updated the website and APIs with the new version of…

MySQL – OPTIMIZE all tables with PHP and mysqli

$alltables = mysqli_query($conn, "SHOW TABLES"); while ($table = mysqli_fetch_assoc($alltables)){ foreach ($table as $db => $tablename){ echo "OPTIMIZE TABLE `".$tablename."`"; mysqli_query($conn, "OPTIMIZE TABLE `".$tablename."`") or die(mysqli_error()); echo "<br>"; } }

jQuery – Auto slash(/) in date field

Automatically formating TextBox to dd/MM/yyyy while typing using jQuery Example here: jsfiddle.net/DotMaui/2g6ayjp5/1/ $(“.my-date”).on(“keypress keyup”,function (event) { if (event.key == “/” && $(this).val().length != 2 && $(this).val().length != 5) { event.preventDefault(); } else if ((event.which !=…