Web and SEO Professional
Wednesday March 10th 2010
affiliate_link

ads

Posts Tagged ‘php’

Mostly used programming languages and their programming advantages.

Nowadays, world wide clients are demanding for cost effective solutions along with high-performance speedy development. In recent internet marketing arena, designing a good website template and placing unique and relevant content is not enough for a profitable web businesses. Web programming is getting more value in terms of building flexible [...]

All WordPressTags display

I want to achieve a tag cloud like my website banner. after lots of research on net i decide to write my own code. I have incorporated following code in my header.php $tag = wp_tag_cloud('smallest=30&largest=30&number=45&orderby=count&order=DESC&unit=px&format=array' ); foreach( $tag as $item) { echo "<" . $item . "> [...]

W3CDTF date in PHP

To create a date time in the W3CDTF format (used in RSS feeds).W3CDTF date format is required for RSS validation. Use following PHP code. < ?php $date=substr(date("Y-m-dTh:i:sO"),0,22).":".substr(date("O"),3); echo $date; ?> above code will giveĀ  output like : 2009-01-28T01:49:16-07:00