Filed Under ([-] PHP) by Junkiest`Jr on 14-09-2008
Now i can watch TV online…. because don’t have much time to watch on TV. so i choose watch on internet..
huehuehuehuehue……. the site who provide this service : http://tv.indowebster.com/index.php?link=tv
Requirment :
RealPlayer 11…
FlashPlayer...
Filed Under ([-] PHP) by Junkiest`Jr on 14-09-2008
CAPTCHA…. what is that? definition of that word is Completely Automated Public Turing test to tell Computer and Human Apart [ begh njlimet... keseleo lidah gw
]. yup, with this captcha we can prevent bruteforce attack. it’s tell to computer, which the user is not a program or kind else [ bot ]. usualy captcha use on validation form. ex on registering form.
we can make a simple captcha form with php.
Read the rest of this entry »
Filed Under ([-] PHP) by Junkiest`Jr on 11-09-2008
we can import sql file which that sql file is execute syntax sql, for example : create table, insert value, delete etc. but now we try to execute that sql syntax use php programing. is it necesary to know ? [ of course with this method, usualy use on contain management system to install the table for their system ].
let’s begin. to do this method, we parse the sql file.
:SQL FILE
CREATE TABLE Contoh(
id int NOT NULL AUTO_INCREMENT, PRIMARY KEY(id),
nama varchar(30) NOT NULL,
keterangan varchar(100)
);
INSERT INTO Contoh(id,nama,keterangan) values(1,'berita','membuat categori berita');
Read the rest of this entry »
Filed Under ([+] Programing, [-] Perl) by Junkiest`Jr on 01-07-2008
Last night i try to make some simple application from WWW::Mechanize library using perl. and then i think, how to monitoring our paypal balance and see the history of our account transaction… so, i try to make it bassed on perl.
Requirment :
- ActivePerl [ I use ActivePerl 5.10 ]
- Library WWW::Mechanize [ make temporary browser ]
- Library HTTP::Cookies [ keep our login cookies ]
- Library Crypt::SSLeay and Net::SSleay [ open HTTPS ]
yup let’s start :
Source [ Just Copy Paste on text editor ] :
Read the rest of this entry »
Filed Under ([-] Perl) by Junkiest`Jr on 01-07-2008
There are many kind how to install library on perl, i like use ActivePerl 5.1. last night i try to install library on perl with MCPAN. i use windows XP as My Operating SYstem.
STEP 1
you must download and install nmake.exe. to compile make command. you can download here . make usually use n linux, and now i use windows. so with that tool i can compile command make which only can do in linux shell.
STEP 2
to install WWW::Mechanize, you need YAML on cpan.on command prompt, type this :
perl MCPAN -e shell ==> to enter shell command on CPAN.

and then type this :
install WWW::YAML
and then try to download and install the YAML automatically.
STEP 3
install WWW::Mechanize, just type
install WWW::Mechanize
then process installation begin. if appears confirmation to compile right now, just type y and enter. and then compile will be continued soon.
finish the installation WWW::Mechanze.
next we’ll try to use that library.