me,myself,english and programming..

Archive for September, 2006

AJAX for beginner

Wednesday, September 27th, 2006

At first when i heard about AJAX, i thought it is a new language but it is not.

Ajax is a set of technologies being used together in a particular way.
Ajax is simply a term to describe client-server communication achieved without reloading the current page.
AJAX = Asynchronous JavaScript And XML

This is a good resource to start learning ajax :
Beginning ajax
w3schools

Updated: More list
AJAX Tutorial

You can try give a comment or contact me to test my “powered by ajax ” page. :)

Komuniti WordPress Malaysia

Tuesday, September 26th, 2006

Jom ke sini kalau nak tahu apa-apa pasal wordpress.

wpmalaysia.com

cakap melayu lar plak ek.

actually im getting confuse now,should i use bahasa melayu..or should i use english to write this posting.I know, i sound like stupid if i write in english but i already promise myself to improve my english. That’s why i think i should write in english.

Tapi bak kata mysticmind, rojak sekali sekali pun sedap jugak kan.

so..here goes.i will mix up my english and bahasa melayu posting.

adios… :D

How to create .htaccess file in windows

Monday, September 25th, 2006

Have you ever try to create .htaccess file in windows ?

You’ll see this error. You can’t create it using normal way you create other files.

htaccess_error.png

Using below method,you still can create .htaccess file in window. :D

C:\>echo testing create .htaccess file > .htaccess

That is only a dummy file which is apache server will not understand what you are talking about. So you need to add your real content and save the file as usual.

Update : The easier way to create .htaccess file in windows :

1. Open notepad
2. File->Save As and key in .htaccess
3. Save

Ramadhan Datang Lagi

Sunday, September 24th, 2006

ramadhan.jpgSelamat Berpuasa kepada semua sahabat-sahabat yang beragama Islam.

How to run Apache and MySql as a services

Saturday, September 23rd, 2006

Setting apache to run as a services.

C:\apache>apache -i
Installing the Apache service
The Apache service has been installed successfully.

C:\apache>net start apache
The Apache service is starting.
The Apache service was started successfully.

C:\apache>net stop apache
The Apache service is stopping.
The Apache service was stopped successfully.

Setting mysql to run as a services.

C:\apache\mysql>mysqld –install
Service successfully installed.

C:\apache\mysql>net start mysql
The MySql service is starting.
The MySql service was started successfully.

C:\apache\mysql>net stop mysql
The MySql service is stopping.
The MySql service was stopped successfully.

You can set this services to start automatically once you start your pc. Now,you don’t need to run it manually whenever you want to do your web programming.

Happy programming! :)