LAMP on Ubuntu Intrepid Ibex (Ubuntu 8.10)

February 19th, 2009

LAMP  : Linux + Apache + MySQL + PHP/Perl

It’s important to always update the necessary packages with debian with this command. It’s a very good idea to run this command regularly to keep yourself and your system informed about possible package updates, particularly security updates.

apt-get install update

Okey. let’s continue on how to setup a simple server but perfect  on ubuntu 8.10.  First of all, open terminal! Read the rest of this entry »

 

Posted by crime_genius86 | Filed in Linux, MySql, PHP, Server, Ubuntu, phpMyAdmin | 6 Comments »

Hello world!

February 18th, 2009

/* Totally reborn, Don’t ask why.. */

<?php
$hello = “Hello World!”;
$name = “crime_genius86″;
$note = “Your are in a geek world”;

echo = $hello;
echo = My name is: $name;
echo $note;
?>

 

Posted by crime_genius86 | Filed in Hello world | 10 Comments »