How to codes
How to make things work…
First PHP Page
12:19 pm | May 19, 2012

Author: admin | Category: PHP | Comments: Off

Here is a simple php page, that shows the PHP environment information.

Create a file called: info.php

Write this in the file:

<?php
phpinfo();
?>
Linux setup of Apache, PHP5 and MySQL
1:43 pm | March 23, 2012

Author: admin | Category: Apache MySQL PHP | Tags: , , , | Comments: Off

Here’s a simple walk through in setting up a Linux server with Apache, PHP and MySQL.

apt-get install apache2 php5 php5-mysql mysql-server mysql-client
Simple Java Test
7:59 pm | March 22, 2012

Author: admin | Category: Java | Comments: Off

Here you can see a simple Java code

public class FirstClass {
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        // TODO code application logic here
    }
}