Author Archives: admin

It stuff : PHP ByPass Captcha Code

Sounds exactly what you want ? Are you damn curious about how to bypass captcha with php? Me too, and, I’ve found a very interesting set of functions which does that for you. Go to http://pastebin.com/f1560d747 You’ll see it’s requesting … Continue reading

Posted in It Stuff | Tagged , , , | Leave a comment

PHP Tutorial : Country list array

In my point of view, a very usefull and common thing we need when we build for example a membership site it’s country list array. I will do it within next function then will show how to use it : … Continue reading

Posted in Usefull PHP | Tagged , , , , , , , | Leave a comment

PHP Tutorial : List function

Beeing surprised that I didn’t write here about this “cute” php function called list(). I like it a lot, it’s like the extract() function in some way if you remember. The list() php function will assign variables in one shot … Continue reading

Posted in Usefull PHP | Tagged , , , , | Leave a comment

How Shared Web Hosting is a Batter Option?

A web server is a device that allows you to present your website over the internet. Only a few companies afford to pay a huge amount to encompass an entire web server, named as dedicated web hosting. The other small … Continue reading

Posted in It Stuff | Tagged , , | Leave a comment

PHP Tutorial : Results Pagination

A very usefull and common subject : php pagination. You need this when you have a lot of entries in the database and don’t want to show them in a single page, here comes the results pagination in php. This … Continue reading

Posted in Complete Scripts | Tagged , , , , , , , , , , , | Leave a comment

Feedburner Feed

Hi, This is a request for people reading my feed or who already subscribed. Please use the feedburner feed so I will be able to see how many guy’s are following. FEEDBURNER URL : http://feeds2.feedburner.com/crivionweb/kRHa

Posted in It Stuff | Tagged | Leave a comment

PHP Tutorial : Membership script – Users Logout

Final step and the most easiest part is now users logging out. Just build a page called logout.php and put a link to it everywhere you want to give the option to users to logout & here’s the function: <?php … Continue reading

Posted in Complete Scripts | Tagged , , , | Leave a comment

PHP Tutorial : Membership script – Users Registration

Hello, I’ve just created a brand new category called Complete Scripts. In this one you will find complete solutions of applications. The first tutorial is called how to create a membership script with user registration. I will write here a … Continue reading

Posted in Complete Scripts | Tagged , , , , , , , , , | 2 Comments

PHP Tutorial : Write to a file with fwrite

I showed you earlier in a older post how to open and read text contents from a file. Now it’s time to see how to write to a file using php function called fwrite(). <?php $theFileToWriteTo = “textFile.txt”; $fileHandle = … Continue reading

Posted in Basic PHP | Tagged , , , , | 1 Comment