<?php$today = date(‘d-m-Y’); // Date must be in ‘d-m-Y’ format$date = “07-07-2020”; if(strtotime($date) < strtotime($today)){ echo $date .’ date is smaller than today ‘.$today […]
How do I set and get a cookie with jQuery?
<script type=’text/javascript’>function setCookie(key, value) { var expires = new Date(); expires.setTime(expires.getTime() + (1 * 24 * 60 * 60 * 1000)); document.cookie = key + […]
How to import an SQL file using the command line in MySQL?
#Step1: Create just databse in your phpMyAdmin Ex: test_table.sql #Step2: put sql databse file in bin folder Ex: E:wamp64binmysqlmysql5.7.26binDBtest_table.sql # Open CMD# Step3: Change […]