Tuesday, September 7, 2010

Sunday, September 5, 2010

Lesson 1 : Introduction Jquery

Lesson 1 : Introduction Javascript

Lesson 1 : Introduction Zend

Lesson 1 : Introduction Drupal

Introduction Drupal
Drupal is a free and open source modular framework and Content Management System (CMS) written in PHP.  It is used as a “backend” system for many different types of websites, ranging from small personal blogs to large corporate and political sites.


Download Drupal
http://drupal.org/download

How to Install Drupal

Step 1: Select your language
Click on “Install Drupal in English”


Step 2:
You will found a message

‘’’’’’’’’’’’’’’’’’’’’’’’’’’’
The Drupal installer requires that you create a settings file as part of the installation process.

   1. Copy the ./sites/default/default.settings.php file to ./sites/default/settings.php.
   2. Change file permissions so that it is writable by the web server. If you are unsure how to grant file permissions, please consult the on-line handbook.

More details about installing Drupal are available in INSTALL.txt.

‘’’’’’’’’’’’’’’’’’’’’’’’’’’’’

Follow these instruction and click on “try again”
Step 3: Enter your database information and click on save and continue


Step 4: it may take some time

Step 5: enter your site information
Be remember your admin user name and password.


Step 6: a thank you message will come click on “your new site” link




 

Lesson 1 : Introduction Joomla

Introduction joomla
Joomla is a open source content management system (CMS), which enables you to build Websites. This is easy to use and extensible, it is freely available to every one.

Lesson 1 : introduction .htaccess

Step 1: create a file with notepad and save this with name .htaccess

Friday, August 27, 2010

Lesson 3 : Comments in php


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo 'Hello World'; ?> </title>
</head>

<body>

<?php echo 'my first file'; 

// this is a comment

/*
This is
a comment
block
*/
 

?>
</body>
</html>

Lesson 2 : Create first file in php

step 1 : create "test" folder in your root
root folder in wamp : path/wamp/www/
root folder in xampp : path/xampp/htdocs/
root folder in AppServ : path/AppServ/www/

step 2: create hellloworld.php


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo 'Hello World'; ?> </title>
</head>

<body>

<?php echo 'my first file'; ?>
</body>
</html>



step 3: open browser
step 4: paste this url in address bar http://localhost/test/hellloworld.php

Friday, August 20, 2010

Lesson 1 : Install Apache distribution containing MySQL and PHP

Step 1. download wamp, AppServ or xampp
you can download these from here
wamp
AppServ
xampp

Step 2: install one of these