31 May 2011

hahaha :D

ske ske

☆ rawghh ☆

awak salah !

yeke..bgus la klu slh..wiagaga

☆ rawghh ☆

mnada ou . awk slh tengok kali >.<

x slh..x slh v v

☆ rawghh ☆

korang ade blog takk ? give ur link plss

nah amek -

☆ rawghh ☆

selamat pagi :')

bile ko tanye soklan ni..

☆ rawghh ☆

teda lah , manada berubah ouh o.0

iye dr segi relationship..sye kacewa wouu

☆ rawghh ☆

if you're in love, press 'ask your followers' button <3

wahaha wiakaka walawala

☆ rawghh ☆

camne cuti ?

cuti amende aku kje..bkn dak skull k

☆ rawghh ☆

B O S A N kan ?

wat mase skunk x..haha

☆ rawghh ☆

laki yg brbadan sasa hensem ke ?

ko tanye bdn ke muke ni..

☆ rawghh ☆

11 May 2011

if you're in love, press 'ask your followers' button <3

u ask me la

☆ rawghh ☆

Bored ? Press ask your followers ;)

da press byk kali

☆ rawghh ☆

awak , saya dah tukar link belog :)

....ape link bru..?

☆ rawghh ☆

nak dpt'n url respone gune perl


#!/usr/bin/perl

use LWP::Simple;

my $url = 'http://www.ibtimes.com/articles/143863/20110511/google-inc-android-ice-cream-sandwich-motorola-mobility-samsung-lg-smartphone-tablet-gingerbread-hon.htm';

my $content = get $url;
die "Couldn't get $url" unless defined $content;

# klu url success
print "success..wuwuwuu";

09 May 2011

call php dr perl coding


contoh nye camni -
wat file test.pl
# cat test.pl
#!/usr/bin/perl
print "This is a perl script\n";
my $output = `php test.php`;
print "This is from PHP:\n$output\n";
print "Back to perl...\n";
exit 0;
next, the test.php script:
# cat test.php
<?php
echo "PHP generated this";
?>
Here's the output of running "test.pl":
# perl test.pl

This is a perl scriptThis is from PHP:
PHP generated this
Back to perl...