Related Posts
How to write emails faster
One of the reasons why smart phones have become so popular is... read more
How to detect Key Press combinations like ALT+1 in jquery
Try "keypress" evenHandler in jQuery: Notice Below Code, Although this code is correct... read more
How to get last insert id in Codeigniter
$this->db->insert('users', $data); # where $data is an array $insert_id = $this->db->insert_id(); # insert_id()... read more
How to remove, uninstall ICLOUD from windows 8 or windows 10
After a lots of headache, I find the solutions. I am using... read more
Bootstrap Added to Gig Project
<!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <!-- Optional... read more
Rename or change default timestamps created_at, updated_at – Laravel
Best method to change Laravel's default timestamps: Step 1: Override const in specific... read more
How to set flash message in Codeigniter
$this->session->mark_as_flash('item'); # Version 3.x only $this->session->mark_as_flash(array('item', 'item2')); # Version 3.x only Array to... read more
How to search your Mailbox without Opening it
Most popular browsers like Google Chrome and Mozilla Firefox allow you to... read more
Update one column from value of another column from another table in MySQL
This can be achieved using a single query with join. We can... read more

Leave a Reply