Archive

Archive for the ‘Programming’ Category

jQuery and AJAX

November 21st, 2008

After my previous simple jQuery animation tutorial (the sliding thing, fading in and out), and my previous simple jQuery game example with AJAX, here is a simple tutorial about how to use jQuery for AJAX :)
Read more…

Programming , ,

PHP Random Characters

November 14th, 2008

Here is a small PHP code if you want to generate random character fast. :)

Read more…

PHP, Programming

Secret of PHP Echo

November 6th, 2008

For example you want to echo several part of strings, usually we use this
<?php echo ‘hello ‘.’ world ‘.$name; ?>

I read some articles that using comma such as <?php echo ‘hello ‘,’ world ‘.$name; ?> is faster than string concatenation with dot.
Read more…

PHP

Simple Jquery Game

November 3rd, 2008

I learned a little bit from my previous post about jquery. So i made a simple game with jquery. What you should do is guessing some words with a hint. Good luck and i hope you win a lot :D

To play the game, click here.

Programming , ,

Simple Jquery Tutorial

October 31st, 2008

Here is a simple jquery tutorial. I just downloaded jquery yesterday and started my first noob day with jquery. With this tutorial you can make famous sliding animation with jquery and some animation.

Download jquery tutorial (21KB)

Addition: Here is the jquery offline documentation. :) Download (538 KB).

Programming , ,