Advanced Search
Search Results
7 total results found
Kira beza masa
var date1 = new Date("2021-11-30 09:48:00"); // ni date & time sekarang var date2 = new Date("2021-12-01 00:00:00"); // ni date & time yang dia pilih var masa = ((date2.getTime() - date1.getTime()) / 3600000); console.log(masa); var DateDiff = { inSecon...
Laravel Force Https
use Illuminate\Routing\UrlGenerator; public function boot(UrlGenerator $url) { public function register() { // force https if (config('app.env') !== 'local' && !filter_var(request()->getHost(), FILTER_VALIDATE_IP)) { $thi...
Test Email Relay
Untuk server aplikasi Linux/Windows, berikut adalah summary teknik fully compliant dengan RFC5322 untuk SMTP Relay with IP Authentication, dimana setiap langkah diakhiri dengan menekan butang Enter dan Langkah seterusnya setelah mendapat response selayaknya ...
How to Replace Blank Cells with Zeros in Excel Pivot Tables
For example, suppose I have a data set as shown below: If I use this data set to create a pivot table with Geography in Rows Area, Product in Column Area and Revenue in Values area, the result is something as shown below: As you can see, there are blank ...
Basic HTML Code
<html></html> <!-- Start and end document --> <h1></h1> <!-- Header size 1-6 (large-small) --> <p></p> <!-- Paragraph --> <br> <!-- Break the line --> <!-- Non breaking space --> <strike></strike> <!-- Strike through -->
Input Types in HTML
<input type="text">
What is JavaScript
JavaScript is a dynamic programming language that's used for web development, in web application, for game development, and lots more. It allows you to implement dynamic features on web pages that cannot be done with only HTM and CSS