This is the next parsing tutorial from part 1. After I learned two methods of parsing with PHP on part 1. I tried to create some PHP script from “PHP Programming Solution” that allow you to counting words in a string. Use a pattern to identify the individual words in the string, and then count [...]
Hehe.. I learn how to parsing with PHP. I read some books and find so many tricks to parsing text using PHP.. So I’ll try one by one^^ First, I tried to simple parsing with PHP. There are some technique for parsing that I learned today.
Parsing Comma-Separated List
How to parsing from comma-separated list then [...]
One day, I got trouble to make an Action Script embeded on PHP and Ming. I had success to make random movement, but not for blur filter.
?View Code PHP1
2
3
4
5
6
7
8
$strAction="
var xPercent = 5;
var yPercent = 5;
var ffb=flash.filters.BlurFilter;
var filter = new ffb(xPercent, yPercent, 2);
var filterArray =[];
filterArray.push(filter);
this.text1.filters = filterArray;";
no error, but why it’s not working???
Akh.. what’s wrong? why [...]
Captcha again!! In this Captcha, i tried to using Ming Library as PHP extension. Ming Library is used to generate Flash movie on Fly. So I can animated my Captcha using Flash movie. Make sure you have installed this extension. For Windows user you can install easily with XAMPP (download here). It’s same [...]
Do you know Captcha? Hmm.. I think captcha is used to anti spam. Usually, if you want to submit a form, you must read combination codes and write it on text area. If match, the form will submitted and vice versa. It is used to detect you are machine or not.. hah so funny right? [...]
Today, I tried to make simple graph with PHP. I read it on PHP Hack book By Jack Herrington and I’ll share it for you. It seems as though every site you go to these days requires QuickTime or Flash so that you can see fancy images and graphs. With this tricks you don’t [...]
Syalalala~
Hmm… PHP again^^ today i tried to make random image with PHP. I used it on my sidebar to show my photos but in this tutorial I use localhost with apache server (XAMPP). First go to directory c:\xampp\htdocs and create new folder ‘random’. Then open ‘random’ and create new folder again to save your image. [...]