Do you want to design website or a system?
Hi... My Name is Mohamad Fikri Bin Ramlan.
I'm a web designer and also a system developer.
If anyone want me to design a website or develop a system. You can send your request to my email: he.thumb@gmail.com or my facebook: Facebook.
My Work #1 - Kobemas System
This system use to store and update customer information. it also have search capability based on criteria inserted. it also provide report and statistical information
My Work #2 - Perpustam website

This screenshot show a library website front page which contain feature item column and other basic features of a website. This website also support multilingual and help features. Its develop using wordpress as platform.
My Work #3 - Micth website

This is a screenshot of a website that I and other staffs working on during my practical training At Micth. This the company website which build using wordpress as platform.
Upcoming project
1. Sudoku
2. Tetris
3. Multimedia project modification - road&traffic
Not satisfied
java base converter (incomplete)
This is a java program that convert a number in decimal to another base.
Because it still incomplete, it can only convert to base 2 until 9.
*/
//Author: Muhammad Amir Zaki Bin Zainal Alam
import java.util.*;
public class Decimal_To_Converter
{
public static void main(String args[])
{
String ans = "", ans2 = "A";
int num, num2, num3=0, base, from;
Scanner scanner = new Scanner(System.in);
//System.out.print("Enter number's base : ");
//from = scanner.nextInt();
System.out.print("\nEnter number in base entered : ");
num = scanner.nextInt();
System.out.print("\nEnter base to convert to : ");
base = scanner.nextInt();
num3 = num / base;