Articles about php, html

How to make rounded corner div

Today i will tell you how to make rounded div. There are two css properties used for this -moz-border-radius and -webkit-border-radius. They both apply to firefox and google chrome respectively. I am applying about 10px round to the div. If you want to apply round corner to only top then you can use as: -moz-border-radius:10px 10px 0px 0px; -webkit-border-radius:10px 10px 0px 0px; Here is [...]

By |2024-03-27T13:04:19+00:00February 8, 2011|Programming|0 Comments

Css style tutorial

In this tutorial i will tell you how to apply css styles to html tags. I am applying style to the div tag. First you use style in div tag and then i apply different css properties in the style like width, height, margin, padding, border, background color. Each css property is separated by semicolon. Then i write lpsum text within the div tag. So the [...]

By |2024-03-27T13:04:20+00:00February 8, 2011|Programming|0 Comments

Email validation form in php

To verify email first we make our form and in this form make one input text field where user enters its email id and a submit button which when pressed shows that email is valid or not. In our php code we use regular expression to check the email whether its valid or not. In our php code we first check that whether form is submitted or not [...]

By |2024-03-27T13:04:20+00:00February 8, 2011|Programming|0 Comments

Find IP address, referrer, uri , operating system using php

Today i will teach you how to find IP address, referrer, uri , operating system using php. We will use $_SERVER to get all this information. $_SERVER['HTTP_REFERER'] is used to get the url of the page that refered the user to the current location. $_SERVER['REMOTE_ADDR'] is used the get the client IP address $_SERVER['REQUEST_URI'] is used to get the uri of the URL. For example the [...]

By |2024-03-27T13:04:21+00:00February 8, 2011|Programming|0 Comments

Easy way to install php, mysql, apache

Today i will teach the easiest way to install php, mysql, apache. The manual installation of these tools is boring and difficult for non-technical person or new programmer. The easy way to install these tools is that there are softwares that come with the package of php, mysql and apache. These softwares are easy to install and configure. I have three softwares to give you. Xampp: [...]

By |2024-03-27T13:04:21+00:00February 8, 2011|Programming|0 Comments

Joomla 1.6 Features

Joomla is used for making blogs and newspapers websites like eBay, Citibank, General Electric, IHOP and more. Joomla 1.6 version has added some features that are:- Sections are removed now and replaced with categories and sub categories. Now you can update components and plugins in one click like wordpress do. Template styles is also added which gives more control to designer working on different parts of [...]

By |2024-03-27T13:04:24+00:00January 30, 2011|Programming|0 Comments

Website Development Training

These courses are given online. For online training you must have dsl connection and head phone, microphone. Name Of Course Contents Fees Hours Html Tags, Tables, Div's, Tag attributes, formatting, images, styles, lists, forms, colors, fonts, introduction to frames. $40 8 hr Css id, class, styling, margin, padding, outline, border, float, align, display $40 8 hr Javacript Statement, Comments, Variables, Operators, Comparison, if/else, switch, popup, functions, for loop, [...]

By |2024-03-27T13:04:24+00:00December 14, 2010|Programming|4 Comments

Introduction to regular expression

Regular expressions are used to validate email addresses, username, phone numbers and other stuff. The syntax of regular expression is different in different languages. For example in perl it is differnt and in POSIX the regular expression syntax is different. The regular expression is also called regex. Regular expressions are interpreted differently by different computer languages and operating systems. Let me discuss some parts of common [...]

By |2024-03-27T13:04:25+00:00December 14, 2010|Programming|0 Comments

class vs object

Class is a type of template from which objects can be created. Classes are static and they give a blueprint to create the object. Classes have state and behavior. For example you take the example of human. Human have eyes, hands which are state of the class human and walking and talking are the behavior or action of that class. You can take another example of [...]

By |2024-03-27T13:04:25+00:00December 5, 2010|Programming|0 Comments

What is ISP

Isp stands for internet service provider or independent service provider. Isp is a company that provides individuals and other companies access to the internet and other related services such as website building and virtual hosting. Isp is the company which provides user the facility of internet. Isp provides many ways to connect to internet. The user may connect through dial-up, dsl or broadband, wireless modem, wi-max. [...]

By |2024-03-27T13:04:26+00:00December 5, 2010|Programming|1 Comment
Go to Top