How to change .htm/.html into PHP or ASP pages

July 20, 2008

If you have a website with lots of .htm or .html pages indexed on Google (or other search engine) and they have many backlinks, I’m sure you won’t let them deleted just because you want to serve dynamic content and change their extension to PHP or ASP pages. That’s enough reason why you have to read the tutor below on how to interpret .htm/.html into PHP or ASP pages in order to make them could serve dynamic content.
That could be done without changing the extention on the Apache Web Server for PHP or IIS Web Server for ASP.

Change .htm/.html to PHP pages
You could tell your Apache Web Server to interpret your .htm/.html files as .php files and serve dynamic content. Just add the following code:
AddType application/x-httpd.php .html .htm

On some Apache servers, they might require the following code line: [Read more]

Popularity: 23%

How to Choose Free Hosting PHP

June 30, 2008

Picture of Free Hosting PHPIt’s great if you could find a good list of Free Hosting PHP, or any cheap hosting php. There are many directory list of free hosting PHP on Google.

There are some factors that you should consider on choosing free hosting php:

Adverts
Yes, it’s not free anyway, they need money to run the server, that why they will put their adverts on your website that hosted on their free hosting.
Most free hosting put banners, and some use text link ads. Choose which that could fit to your layout. [Read more]

Popularity: 28%

Tips to Maximize CTR of Chitika RPU on Wordpress

May 16, 2008

This is a small tips to maximize your CTR (Click-through rate) of your Chitika RPU (Related Products Unit). Chitika RPU system don’t have the section targeting facilities like what Adsense does, and sometimes it will make your Chitika ads not relevant to your website content. And for Wordpress user, this could be done by automatically fill the chitika keywords with your post title.

It’s simple, just insert the Wordpress post title code : <?php echo the_title(); ?> to your Chitika ads code.
Here’s the sample code:

<script type="text/javascript"><!–
ch_client = "chitika_client";
ch_type = "rpu";
ch_noprice = "1";
ch_shufflequeries = 1;
ch_width = 728;
ch_height = 90;
ch_non_contextual = 1;
ch_default_category = "93767";
var ch_queries = new Array( );
var ch_queries = new Array( "<?php echo the_title(); ?>" );
var ch_selected=Math.floor((Math.random()*ch_queries.length));
if ( ch_selected < ch_queries.length ) {
ch_query = ch_queries[ch_selected];
}
//–></script>
<script src="http://scripts.chitika.net/eminimalls/mm.js" type="text/javascript">
</script>

Hope it works to maximize your Chitika RPU earning.

Popularity: 31%