There really is a much easier way of doing this: if ( $this -> upload -> do_upload ()) // If file was uploaded { ...
Store date only in mysql with php codeigniter
What is your reason for doing this? I can't see any reasonable use for it. You cannot change the way MySQL stores dates, no. But you...
Datepicker in jquery example
<input type="text" Placeholder="Start Date" class="datepicker"/> <script> $( ".datepi...
How can I get query string values in JavaScript?
You don't need jQuery for that purpose. You can use just some pure JavaScript: function getParameterByName ( name ) { name = ...
Fatal error: Cannot redeclare class (PHP)
Use require_once instead of require
Jqery remote validation example
<script> $(function(){ $("#register_form").validate({ rules: { username:{ required: true, }, email:{...
mysql query to get the last 7 days user records
SELECT visitors_id FROM `joy_visitors_count` WHERE `time_stamp` >= DATE_SUB(CURDATE(), INTERVAL 7 DAY)
How to get this month registered users records in mysql query
SELECT userid , MONTH ( time_stamp ) , time_stamp FROM `users` WHERE MONTH ( time_stamp ) = MONTH ( CURDATE ( ) ) LIMIT...
CSS flip horizontally
<div style="width: 200px"> <div style="float:left"> </div> <div style="float:...
how to send HTML Template as mail in codeigniter
$data [ 'map_to' ]= $this -> input -> post ( 'map_to' ); $event = $this -> db -> query ( "query...
Codeigniter Dynamic Config base_url
$config['base_url'] = ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https...
Google Maps Address autocomplete
<html> <head> <meta http-equiv =" Content-Type " content =" text/html; charset=windows-1252 "> ...
Popular Posts
- The Guide to integrate Bootstrap With CodeIgniter
- Fatal error: Call to undefined function base_url()
- How to use Sumo Select in jquery with example
- mysqli function to get the last inserted record or row id
- Professional Angular JS Pdf download
- Datetime picker in jquery simple example with dd/mm/yyyy format
- CREATE A JAVASCRIPT PROGRAM TO ACCEPT FIRSTNAME AND SURNAME FROM PROMPT BOX AND DISPLAY FULLNAME
- CREATE A JAVASCRIPT PROGRAM TO ACCEPT 2 NUMBERS FROM PROMPTBOX AND DISPLAY SUM, DIFFERENCE(SUBTRACT), MULTIPLICATION AND DIVISION BY USING FUNCTIONS
- CREATE JAVASCRIPT PROGRAM TO CHECK IF USERNAME IS ANIL AND PASSWORD IS ANIL THEN DISPLAY WELCOME ANIL IN ALERT BOX IF THE USERNAME AND PASSWORD IS NOT ANIL THEN DISPLAY INVALID USER IN ALERT BOX
- Use of undefined constant EXT - assumed 'EXT' Filename: core/MY_Loader.php
