Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

7 total results found

Kira beza masa

Javascript

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

PHP Laravel Framework

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

Mail Test Mail

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 ...

mail
relay
test

How to Replace Blank Cells with Zeros in Excel Pivot Tables

Microsoft Excel Tips & Trick

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 ...

pivot
blank
replace
zero
empty
cell

Basic HTML Code

HTML

<html></html> <!-- Start and end document --> <h1></h1> <!-- Header size 1-6 (large-small) --> <p></p> <!-- Paragraph --> <br> <!-- Break the line --> &nbsp; <!-- Non breaking space --> <strike></strike> <!-- Strike through -->

Input Types in HTML

HTML

<input type="text">  

What is JavaScript

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