Huge IT Slider is one of the most preferable wordpress plugin, This HUGE IT slider has good rating, In my view its better to have if you wo...
FTP Configuration in Cent os,
vsftpd ( V ery S ecure F ile T ransport P rotocol D aemon) is a secure, fast FTP server for Unix/Linux systems. In this how-to artic...
How to Update Drupal Version
Instructions on how to update Drupal core with a newer version of Drupal of the same category or same base version [ ie Drupal 7.1 to 7.2 ...
How to Install Google Chrome Linux, Centos, Fedora and Ubuntu
Hi, To install the chrome for Centos, Fedora or linux, run the following commands at the terminal. # wget http://chrome.richardlloyd.org...
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
<html> <head> <script type="text/javascript"> function fvalidate() { va...
CREATE A JAVASCRIPT PROGRAM TO ACCEPT 2 NUMBERS FROM PROMPTBOX AND DISPLAY SUM, DIFFERENCE(SUBTRACT), MULTIPLICATION AND DIVISION BY USING FUNCTIONS
<html> <head> <script type="text/javascript"> var a=eval(prompt("Enter firstnumber:")); var b...
CREATE A JAVASCRIPT PROGRAM TO ACCEPT FIRSTNAME AND SURNAME FROM PROMPT BOX AND DISPLAY FULLNAME
<html> <head> <script type="text/javascript"> var fname=prompt("Enter firstname"); var sname...
CREATE A JAVASCRIPT PROGRAM TO ACCEPT USERNAME FROM PROMPT BOX AND DISPLAY WELCOME USERNAME IN ALERTBOX
<html> <head> <script type="text/javascript"> var username=prompt("Enter username"); var nam...
CREATE A JAVASCRIPT PROGRAM TO PRINT WELCOME TO JAVASCRIPT
<html> <head> <sript type="text/javascript"> <h1>WELCOME TO JAVA SCRIPT</h1> </script...
Create a HTML Program to divide the webpage into 4 Parts
<html> <head> <frameset rows="20%,*"> <frameset cols="30%,*"...
Find Server IP address in Linux
ifconfig eth1 | grep 'inet addr:' | cut -d: -f2 | awk '{print $1}' Run the above command @ terminal. It will shows you t...
CREATE EMPLOYEE REGISTRATION PAGE IN HTML
<html> <head> </head> <body> <form> Enter EmployeeName...
How to delete or clear history from Linux Terminal
$ history -cw Run this command into your terminal, you will found a result of clean history
Javascript Program to find which key press at keyboard
This is the basic javascript to find the ASCII code of key-code value <script type="text/javascript"> function displayuni...
How do I get mysql to startup at bootime on Linux or centos
Starting at Boot-Time If you want your mysql db server to continue running after a system reboot, you should add a call to apachectl to y...
How do I get apache to startup at bootime on Linux or centos
Starting at Boot-Time If you want your apache web server to continue running after a system reboot, you should add a call to apachectl to...
The Basic PHP oops concept example program
<?php class A { var $a = 10; public function printvalue() { echo $this->a; } } $a = new A(); $a->printvalue();...
What will happened if you are tring to connect with mysql db without hostname, username and password
I surprised by doing this, i just written code for mysql connectivity from php script by without specifying HOSTNAME, USERNAME AND PASSWORD...
is it possible to add a hyperlink to a facebook post..
Done a lot of research on this. Facebook doesn't seem to support the usual codes which create hyperlinked text (e.g. "click here...
Sendmail in linux or centos
To send mail from linux terminal the below is the command as example. To send mail from terminal you need to be login as a root or you mu...
Hide/Show Gnome or Cent Os Desktop Icons
Before we proceed, you have to install the gconf-editor package. On an Ubuntu box: $sudo aptitude install -P gconf-editor On a RedH...
CSS background image to fit width, height should auto-scale
The below is the syntax to adjust css background image auto width, height by auto scale for all platform browsers <style type=...
Popup Background transparent glass effect
To get background glass effect you can use this one as per requirements <div id="popUp" style=" background-color: rgba(...
Android Activity LifeCycle Program
The below is the Android Life Cycle, it explains how the execution flow in the android. Every Programing language has a life cycle. What ...
jquery.js vs jquery.min.js difference
Functionality wise both are same. The only difference is jquery.min.js is the compressed version of jquery.js.If you are working on dev...
Importing jQuery Library for website from CDNS
Alternatives to Downloading If you don't want to download and host jQuery yourself, you can include it from a CDN (Content Delivery Ne...
Forbidden Error for phpMyAdmin or You don’t have permission to access /phpMyAdmin/ on this server.
If this error occurred at the time of accessing the phpMyAdmin from the web server http://localhost Open /etc/httpd/conf.d/...
What is PHP
PHP (recursive acronym for PHP: Hypertext Preprocessor ) is a widely-used open source general-purpose scripting language that is e...
Inserting data into database using prepared statements PHP Pdo
Example 1: Repeated inserts using prepared statements This example performs an INSERT query by substituting a name and a value for the na...
MySql database connection by PHP Data Objects (PDO)
Connections are established by creating instances of the PDO base class. It doesn't matter which driver you want to use; you always us...
What Is PDO? How to enable in windows/unix systems
PDO is an acronym for PHP Data Objects . PDO is a lean, consistent way to access databases. This means developers can write portable code...
What is the difference between data dictonary and repository
A repository is a place where data stored.. A data dictionary is a repository of meta data.
Difference Between include () and include_once () in php
The major difference between include () vs include_once() in php is, The both functions working performance is same The include_once() i...
The Open source website for web development tutorials
Really I found a beautiful blogsite which gives depth demonstration of php, jquery, and bootstrap, mail function, jquery UI.. Click here ...
Secure Copy SCP command in linux
Secure copy or SCP is a means of securely transferring computer files between a local host and a remote host or between two remote host...
How to compress and extract zip, tar, tar.gz and tar.bz2 in Linux/RHEL/Centos with terminal
ZIP : Compress and extract zip file in Linux Compress file and folder with zip # zip -r archive-name.zip directory_name extract file...
SMS gateway php script to send free sms from site2sms.com
Hi, Now send free sms from website or mobile to mobile number using site2sms gateway for free of cost. This script is made by the php progr...
Popular Posts
- Detecting the Ajax request in Core PHP
- Demanding a price for software development
- Payment Gateway Options and Pricing in India
- How to integrate SEND Grid with Codeigniter
- How to print document content with jquery
- Add one day to the today date in php
- File Upload Conditions helper in Codeigniter
- Address auto fill city, state, district, country, pincode
- Codeigniter 4 Email Code
- How do I run a PHP script using windows Task Scheduler?