Tags
Banner Rotator bulk file uploader captcha cheap web hosting contact form contact form by email custom php function file upload filter unwanted words get into google get ip google pagerank google pagerank update html contact form ip ip address link rotator membership script mysql pagerank update php php $_POST php Banner Rotator php captcha php constants php contact form php email php file uploader php filter php function php function to refresh page php ip php link rotator php password php random php refresh php tutorial pr update Random Banner Rotator random link refresh in a number of given seconds security code send email show ip address validate captcha
Category Archives: Basic PHP
PHP Tutorial : Implode function
Hi, As I had issues with my old host, those days I worked to change it and didn’t had the time to post another nice php function called implode. This function php implode() simply joins the array elements into a … Continue reading
Posted in Basic PHP
Tagged implode, implode php, implosion, php implode, php implode array values
1 Comment
PHP Tutorial : Read file with php
Reading the contents of a file with php is made via read php fread() function. Additionally we need to use other to functions for opening the file called fopen() and to close it with fclose(). PS : the f from … Continue reading
Posted in Basic PHP
Tagged fclose, fopen, fread, php fread, php read, php text read, read file with php, read php
Leave a comment
PHP Tutorial : Writing your own custom functions
Errrr, I dont know which hello word to say for this post to keep the “unique” style so will start explaining how you can do it. Firstly, you have red about a lot of “ready made” php functions which comes … Continue reading
PHP Tutorial : Parse/split url and get components
Hello folks, My question is : how do you split and get an URL to get his components? If you’re using all kind of functions, regular expressions or whatever, here is the save and original function you’ll need and it’ll … Continue reading
Posted in Basic PHP
Tagged php get url, php get url components, php parse url, php split url
Leave a comment
PHP Tutorial : Secured encrypted passwords
Are you searching for a way to encrypt and secure a password or just a simple phrase? If the answer is yes, in php exists a lot of functions which does that, but the most popular is md5() encrypting function. … Continue reading
Posted in Basic PHP
Tagged encrypt, md5, password, php encrypt, php password, php secured, secure
Leave a comment
PHP Tutorial : Explode function to split words
Have you faced with a situation where you needed to split some words ? For that exists explode() php function. Look how it works : <?php $words = “some words needed to split”; $wordsarray = explode(” “, $words); print_r($wordsarray); ?>
Posted in Basic PHP
Tagged explode, php explode, php split, php split words, split, split words
Leave a comment
PHP Tutorial : Unlink delete file
Do you want to make a file manager system or something like that where you will be able to delete ftp/local server files directly from your browser? If so, unlink() function from php will help you to do that. Look … Continue reading
Posted in Basic PHP
Tagged delete, file delete, php file detele, php remove file, php unlink, remove file, unlink
Leave a comment