Sunday, February 19 2017
In this post we have explained about how to change blogger native language. Blogger has support to update or change the blog language with easy steps. Please do the following steps and implement to your blog.
See our demo video on Youtube:
Sunday, February 19 2017
In this post we have explained about how to customize the blogger template. Blogger is a most powerful platform to expose your ideas. I would prefer blogger for beginners to startup their blog.
See our demo video on Youtube:
Sunday, December 25 2016
In this post we have explained about the how to setup the vitual host on xampp for our windows.
We can able to create more than one virtual host on our machine.
Why we are for create virtual host, to optimize the home page URL for all projects.
Step 1:
Point your directory on F:\xampp\apache\conf\extra\httpd-vhosts.conf.
httpd-vhosts.conf
with a text editor.# NameVirtualHost *:80
and uncomment or remove the hash.<VirtualHost *:80> DocumentRoot "F:/xampp/htdocs" ServerName localhost </VirtualHost> <VirtualHost *:80> DocumentRoot "F:/xampp/htdocs/devel/laravel/public" ServerName laravel.dev <Directory "F:/xampp/htdocs/devel/laravel/public"> Options Indexes FollowSymLinks ExecCGI Includes Order allow,deny Allow from all </Directory> </VirtualHost>
Thursday, December 15 2016
In this post explain about laravel installation steps. Now we see the laravel versions and their prerequisites.
Version 5.3 | Version 5.2, 5.1, 5.0 | Version 4.2 |
|
|
|
See our demo video on Youtube:
Tuesday, August 30 2016
After long time back we had to published article from AngularJS. In this post we explained the Dynamic Form Fields integration in AngularJS. Here we are going to implement sample example of employees daily todo lists. The following form fields are employee name,email,designation and description with bootstrap 3. This is the sample form and you will change your needs.
Step1:
Include angularJS library version is 1.5.8.
Sunday, May 29 2016
We had published article about Pear library. Why we are using pear library because in export option they gave simple and flexible with ease of code implementation. In also their documentation clear to understand. Here we gave sample of how to Export XLS file using Pear with PDO and to export the users information as excel file with PDO OOPs . Once you do with our sample code and if you are got idea you can customize code as your wish.
Thursday, May 05 2016
In this post we have explained about how to create multiple database connection in codeigniter. Please do the following changes in your files.
Config.php:
Change the below following things in your config.php
$active_group = 'default'; $active_record = TRUE;
Friday, April 22 2016
In MySql select query we can customize the order of display the result as our wish. The following query I hope it will give some clear ideas do more thoughts in your future queries.
For example:
SELECT * FROM users_ranking ORDER BY field(rank_position,'1','2','3','6','4','5'),email ASC
Friday, April 22 2016
Guys you are trying to insert data from one of your existing table to another existing table or same table in mysql you can use SQL Insert into Select Query. The following query will explain
INSERT INTO users (user_id,username,email,password) SELECT user_id,username,email,password FROM users;
You can add where clause too,
INSERT INTO users (user_id,username,email,password) SELECT user_id,username,email,password FROM users Where user_id <= 5;
Monday, April 18 2016
In this post we have explained about how to generate strong password in PHP. Following function is very easy to generate strong password with alphanumeric and custom special characters too.