Sunday, 18 May 2014

How to use Java Script [ Client-side Validations ]


Java script is one of the script language.Java script is easy to learn..It is lightwaight object oriented programming language. This javascript is integrated with HTMLs and cross-platform.It works in client side.The JavaScript code is executed when the user submits the form, and only if all the entries are valid they would be submitted to the Web Server. If you want to implement the javascript we are using one tag i.e <script language="javascript"> </script> it is write in header part.

For Source Code Click Here

How to insert the Values From Frontend to Backend in PHP

HTML as Hyper Text Markup Language.It is used for to create the web pages in client side/browser side.HTML is easy to learn.


Create connection file ... conn.php

<?php

define('DB_NAME', 'gk');
define('DB_USER', 'gk');
define('DB_PASSWORD', 'gk123');
define('DB_HOST', 'localhost');
$link = mysql_connect(DB_HOST, DB_USER, DB_PASSWORD);
if(!$link) {
die('Failed to connect to server: ' . mysql_error());
}

//Select database
$db = mysql_select_db(DB_NAME);
if(!$db) {
die("Unable to select database");
}

?>

For Source Code


Saturday, 17 May 2014

    Image Sliding Effect Using JavaScript


    Source Code: Click Here

How to send the Secret Key to Gmail using Asp.Net with C#.Net

For Source code : Click Here