Posted Date:11-07-2017 In this we will explain mysql_query insert using custom user created function Stpe 1:Create basic html page with form <form method=”POST” action=”” id=”addproduct-form”> <label for=”hd-desc”>Select Category</label> <select name=”cat_id” id=”cat-id”> <option value=”” selected=””>Select Category</option> <option value=”8″>mobile</option> <option value=”9″>Tv</option> <option value=”10″>XYZ</option> <option value=”11″>mobile2</option> <option value=”12″>Tv2</option> <option value=”13″>Tv 3</option> </select> <label… Continue Reading insert query in php using function

When you integrate angular2 with laravel on top of nginx, you may see empty page while accessing angular2 end point on browser. say http://server-ip/angularclient if you dig little deeper using inspect element, you may see 404 for all files(css,html,js,etc). You just need to verify the href base is as same… Continue Reading laravel and angular2 setup shows empty page on nginx

What is SquirrelMail? SquirrelMail is a standards-based webmail package written in PHP. It includes built-in pure PHP support for the IMAP and SMTP protocols,   #1 Add epel repo wget http://epel.mirror.net.in/epel/5/i386/epel-release-5-4.noarch.rpm rpm -Uvh epel-release-5-4.noarch.rpm #2 Install Squirrelmail yum install squirrelmail -y Navigate to /usr/share/squirrelmail/config/ directory and run the command conf.pl:… Continue Reading install Squirrelmail On CentOS

Posted Date:11-07-2017 In this post we will fix the issue of Select2 search input not working in Bootstrap Modal. If you are implementing  select2 plugin in boostarp  modal, First remove tabindex=”-1″ and add style=”overflow:hidden;”

Install Jenkins on Ubuntu 16 Date Posted: 02-07-2017 Jenkins is a deployment application tool which is used for continuous integration and deployment. In this post, we will explain on how to install jenkins on Ubuntu 16. Prerequisites: Ubuntu Host Allow Incoming port 8080. Implementation: Consider this is a fresh ubuntu server… Continue Reading Install Jenkins on Ubuntu 16

Posted Date:01-07-2017 In this post we will explain selected text from a drop-down list (select box) using jQuery Step 1: Include jQuery  Plugin <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source > Step 2:Create the HTML page using  following code <!DOCTYPE html> <html> <head> <title>Drop Down Select text value </title> <source src=”http://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js”></source> </head> <body> <select name=”select_text” id=”select_text”… Continue Reading selected text from a drop-down list (select box) using jQuery