Delly Mira Debby

Do the best for all

How PHP Can Help Save You Time And Mistakes.

As your web site grows, so does the problem of maintaining it become more complex. Even a two or three page site can have a lot of detail in it. If you want to make any changes to the links or content you have to do so for each page on the site, and then upload all the new information. All this can be very time consuming and also create the possibility of errors creeping in, which can make your site look less professional.

Read the rest of this entry »

Developing State-enabled Applications With PHP

Installment 1

Developing State-enabled Applications With PHP
When a user is browsing through a website and is surfing from one web page to another, sometimes the website needs to remember the actions (e.g. choices) performed by the user. For example, in a website that sells DVDs, the user typically browses through a list of DVDs and selects individual DVDs for check out at the end of the shopping session. The website needs to remember which DVDs the user has selected because the selected items needs to be presented again to the user when the user checks out. In other words, the website needs to remember the State – i.e. the selected items – of the user’s browsing activities.

Read the rest of this entry »

HTACCESS Wrappers with PHP

HTACCESS is a remarkable tool you can use for password protection, error handling (like custom 404 pages), or HTTP redirects. It can also be used to transform whole folders in seconds: adding headers to all your HTML documents, watermarking all your images, and more.

Read the rest of this entry »

Getting your Visitor’s Details Using PHP

You can get quite a bit of information about your visitors without having to use a third party tracking software. I’ll outline the PHP commands you can use to capture some of this data. The details you capture can be saved into a database, and retrieved later to check your site’s performance and user details. The following information is captured using the server variable ($_SERVER) which is available from PHP 4.10 onwards.

<strong>Visitor’s IP address :</strong>

Read the rest of this entry »

Clickbank Security Using PHP

Here’s a way to protect the products you sell with Clickbank, using their built-in protection and by implementing a 30-day expiration, all without having to worry about managing databases or customer lists.

THE FIRST STEP
First of all, Clickbank protection is decent as it is. If you want to keep your customers from passing the thank you page URL around to friends, there are a couple of things you can do.

Login to your Clickbank account: http://www.clickbank.com/login.html
At the top there’s a link that says “Click HERE to modify your account”. Click on the link.
On this page there are two links at the top, but one says “Click HERE to modify your account.” Click on this one.

Read the rest of this entry »