Friday, November 19, 2010

How to use the JavaScript in our Webpage HTML

JavaScript Starting and Ending with Script Tags <Script> Tags Starting with <script type = text/javascript> and ending with </script>. Syntax of JavaScript: <html>    <body>      <script type="text/javascript">         ... //Place the JavaScript code      </script>   ...

By PHP with No comments

JavaScript Table of Contents

 JavaScript Introduction JavaScript How to Work JavaScript Write JavaScript Html Tags JavaScript Alert Msg JavaScript Variables JavaScript Loops JavaScript Date JavaScript Array JavaScript Functions...

By PHP with No comments

Introduction About JavaScript

Netscape developed the client side scripting language called JavaScript. JavaScript used along with HTML to build an efficient web site / webpage. In Starting stage, all the websites developed only in the static pages using HTML. On that time, not able to develop the dynamic action pages in the web based information’s. JavaScript’s used as following way, create dynamic changes, validate forms,...

By PHP with No comments

Thursday, November 18, 2010

PHP File Extensions

PHP files are following file extensions only .php .php3 .phtml This files content text, HTML, Javascript, sty...

By PHP with No comments

What is PHP?

PHP is the powerful open source server side scripting language.PHP means Hypertext Preprocessor. In this PHP script runs only on server side not client side. Mostly all the databases are suitable for using PHP (MySQL, Informix, Oracle, Sybase, Solid, PostgreSQL, Generic ODBC, etc. ) Its a free to download and easy to use. Before going to use PHP, You should know about following, HTML JAVASCRI...

By PHP with No comments

Wednesday, November 17, 2010

Login Page creation using PHP/MYSQL

When you are going to create login, you should follow the following steps Technology : PHP Database MYSQL Server : WAMP 1. Create the user table CREATE TABLE `Users` ( `user_id` int(4) NOT NULL auto_increment, `username` varchar(65) NOT NULL default '', `userpassword` varchar(65) NOT NULL default '', PRIMARY KEY (`user_id`) ) TYPE=MyISAM AUTO_INCREMENT=1 ;    Insert user login information...

By PHP with No comments

    • Popular
    • Categories
    • Archives