Home » Archive

Articles in the Languages Category

PHP »

[21 May 2011 | No Comment | 18 views]
Using PHP to send Email

Learn how to use php to send emails. We will use the mail function to send out mail to receipient, a subject, and message body.

PHP »

[21 May 2011 | No Comment | 2 views]
Using PHP to Create a File

Learn how to create a file using php. The function fopen is used to create a file using php.

PHP »

[21 May 2011 | No Comment | 1 views]
For Loop in PHP

Learn to use the for loops in php. Execute block of instructions by providing 3 parameters : Initialization, Condition and Increment.

PHP »

[21 May 2011 | No Comment | 1 views]
While Loops Do While Loops in PHP

Learn how to execute block of instructions using while loop and do while loop.

PHP »

[21 May 2011 | No Comment | 4 views]
Switch Case in PHP

Learn how to use switch case in php. Example along with a demo of the script.

PHP »

[21 May 2011 | No Comment | 3 views]
If Else Condition in PHP

Learn how to use If Else Condition in PHP. Also includes if elseif condition along with examples and demo.

PHP »

[21 May 2011 | No Comment | 2 views]
Arithmetic Operators in PHP

Use of arithmetic operators in php language. Arithmetic operators include +, -, *, /, %, ++, and –.

PHP »

[21 May 2011 | No Comment | 4 views]
Hello World in PHP

Learn to write your first php file. Display the epic message “Hello World” using PHP.

C / C++ »

[8 May 2011 | No Comment | 27 views]
Program to Print its Own Source Code

Here is a C program to print it’s own source code. That is the output of this program is exactly same as it’s source code.

C / C++ »

[8 May 2011 | No Comment | 43 views]
C Program to Remove Comments and Blank lines from a valid C Program

This program accepts any valid C Program as an input and removes the comments and blanks from it. The output is a program that has no comments and blank lines.