-
ABOUT BHUPENDRA KUNWAR
Bhupendra is an Internet Marketer, Web Developer and a budding Social Enterpreneur. He is also the founder of eUttaranchal.com & Co-Founder DeeBee Web Services...>> -
Latest Articles
- CSS for Box Shadow
- Backup All of your MySQL Databases using AutoMySQLBackup
- Compress a Folder in Linux using Command line
- Centre Aligning ul with fluid width using css
- Import Excel File into MySQL Database using PHP
- Changing WordPress Site URL using raw MySQL Query
- WordPress: WP Query with Custom Fields
- Themed Login & Register Page for WordPress
- The Power Backup. Is it really?
- URL Rewriting – An Introduction
Browse by Category
Category Archives: PHP
Add Subtract to PHP Date function
//Current Date $today = date(‘Y-m-d’); //Tomorrow’s Date $tomorrow= date(‘Y-m-d’, strtotime(“+1 day”)); //Yesterday’s Date $yesterday= date(‘Y-m-d’, strtotime(“-1 day”)); // add 5 days to current date $date_after_5_days = date(‘Y-m-d’, strtotime(“+5 days”)); // subtract 5 days from current date $date_before_5_days = date(‘Y-m-d’, strtotime(“-5 … Continue reading
Posted in PHP
Leave a comment