Skip to content

Instantly share code, notes, and snippets.

@Philoreiser
Philoreiser / Comparing an empty string with "zero".md
Last active May 20, 2021 15:04
DO NOT compare a "string" value with a number
<?php
$val = '';
echo ($val < 0) ? 1 : 0;
<?php
$val = '';
echo ($val == 0) ? 1 : 0;
@Philoreiser
Philoreiser / jquery-datepicker-trigger
Last active May 9, 2019 21:33
jquery-datepicker-trigger
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<div>
Year: <input type="text" id="year" value="2019">
</div>