Friday, 9 September 2016

Compress HTML output in Codeigniter

Compress HTML output in Codeigniter

Compress HTML output Hello friends today i'm sharing code of compress html output in codeIgniter. To remove useless white spaces and extra stuff from generated HTML, except for JS.       Step 1 : Add the compress hook in config/hooks.php $config['enable_hooks'] = TRUE;    Step 2 : Add in compress hook to config/hooks.php $hook['display_override'][] = array( 'class'...

Thursday, 14 July 2016

Top 3 useful tricks of CodeIgniter

Top 3 useful tricks of CodeIgniter

Hi all of you, today i'll share you some codeigniter top tricks. 1 there is an optional perameter in $this->uri->segment                           when you see http://website.com/controller/method/perameter vs http://website.com/controller/method/ in action ? that time we use that type of code..... $variable = $this->uri->segment(3)          ...

Tuesday, 5 July 2016

Disable text selection in web page using CSS

Disable text selection in web page using CSS

Hi there, today i m share code for disable text selection using css, there are not require jquery or javascript.you can disable text selection in whole page or user defined div, this code will disable text selection for whole page.im using .body for disable text select for whole page     .body {  -webkit-touch-callout: none; /* For IOS Safari...

Tuesday, 21 June 2016

Get IP, OS name and Browser Name using JQuery - JavaScript

Get IP, OS name and Browser Name using JQuery - JavaScript

Here i create one html file, in the click event of button, i called some simple javascript and jquery code for get IP address of current system, operating system name and browser name of system in pop up, you can use this code in your login page of web-site, and get all details of users that login in...

Wednesday, 15 June 2016

Display data with AngularJS include Pagination and search

Display data with AngularJS include Pagination and search

Hi there, i'll give you a two file for display data with smart angular code  1. index.php                       - this is the simple .php file and you need to copy paste below code in it.                       - mention...

Friday, 22 April 2016

Using google API to get Auto Complete address

Using google API to get Auto Complete address

Here is the simple way to get full address from using the google API if you want to use your private API and copy the key and paste in <script> tag that placed at bottom of page. (<script src="https://maps.googleapis.com/maps/api/js?key=[YOUR GOOGLE API KEY]&libraries=places&callback=initAutocomplete" async defer></script>) STEP 1 (optional): click on this url for generate the new google api key, https://developers.google.com/maps/documentation/javascript/get-api-key STEP 2 : write...

Friday, 1 April 2016

Redirect non-www to www using .htaccess

Redirect non-www to www using .htaccess

Lots of people wants to redirect their web sites from non-www domain to www but can’t find the right way. So Don't need to worry, here is the solution to do that using .htaccess file. Non-www to www redirect <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L] #Example :(http://yourswebsite.com  to  http://www.yourwebsite.com) </IfModule> www to...

Prompt Web Solution. Powered by Blogger.