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 ([-] PHP) by Junkiest`Jr on 30-06-2008
cURL stands for “Client URLs”, and was developed by Daniel Stenberg in 1998 as a command line tool. libcurl is a portable library that provides an easy interface to the cURL functionality. It is thread safe, IPv6 compatible, and supports persistent connections. The libcurl PHP binding was added by Sterling Hughes.
Both cURL and libcurl can transfer files using a wide variety of protocols, including HTTP, HTTPS, FTP, FTPS, GOPHER, LDAP, DICT, TELNET and FILE. The libraries run on practically any *NIX operating system, as well as Windows, OS/2, BeOS, and many more. The cURL libraries are truly open source, with an MIT/X derivative license. This license is very liberal, allowing the use of cURL for whatever you want, commercial or not. You can use libcurl for free, and even include and distribute it with your own application, whether commercial or closedsource. cURL should not to be confused with the Curl Corporation, which is the commercial producer of the client side programming language, Curl.
And now how install CUrl on WAMP webserver.
- Download the Library on http://curl.haxx.se/download.html
- Find for your operating system [ i use Win32 2000/XP ] and download.
- Extract on Wamp Folder [ wamp\bin\apache\apache2.2.8\ ]
- and then find PHP.ini [ \wamp\bin\php\php5.2.6 ] and open it
- find line ;extension=php_curl.dll
- Uncomment that line [ erase the sign ; ] so apache will run that line [ extension=php_curl.dll ]
- Restart your Apache [ ENJOY (o^_^o) ]
is that work ? lol
Read the rest of this entry »