No Sidebars Defined

This should work. In sidebar.php, add this just after the first < ul > :

Add this just before the last < /ul > :

Now create a new, blank page in your editor and save it as functions.php . Place this on the new functions.php page:

if ( function_exists('register_sidebar') )
register_sidebar();
?>

Upload functions.php and sidebar.php to the theme folder. Your sidebar should now be widgetized.

How to detect the numbers of used nodes in php web host?

It is very simple, only one sentence:

print system(”find . -printf \”%i\n\” | sort -u | wc -l”);

list all posts

<h3>Posts</h3>
<ul>

                <?php while(have_posts()) : the_post(); ?>

<?php foreach((get_the_category()) as $category)
                          { $my_query = new WP_Query(’category_name=’ . $category->category_nicename . ‘&orderby=title&order=asc&showposts=100′);} ?>

                       <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>

       <li><a href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>”><?php the_title(); ?></a></li>

                      <?php endwhile; ?>

<?php break; endwhile; ?>

</ul>

Code to display visitors IP address on website

get_ip_list below is a function that you must call in order to get something.

function get_ip_list() {
$tmp = array();
if (isset($_SERVER[’HTTP_X_FORWARDED_FOR’]) && strpos($_SERVER[’HTTP_X_FORWARDED_FOR’],’,')) {
$tmp += explode(’,',$_SERVER[’HTTP_X_FORWARDED_FOR’]);
} elseif (isset($_SERVER[’HTTP_X_FORWARDED_FOR’])) {
$tmp[] = $_SERVER[’HTTP_X_FORWARDED_FOR’];
}
$tmp[] = $_SERVER[’REMOTE_ADDR’];
return $tmp;
}
echo echo implode(”,”,get_ip_list());

Redirect by PC or mobile access

php code as follows:

$iswap = isset($_SERVER[’HTTP_ACCEPT’])? $_SERVER[’HTTP_ACCEPT’]:”;
if(strpos($iswap,”wap”)>0)
{
@header(”Location: /wap/”);
}

Add php code into html for lunarpage.com

Add php code into html for lunarpage.com linux host.

try this line in a blank .htaccess

AddType application/x-httpd-php php html

Add php code into html for php5

AddType application/x-httpd-php5 .html .htm .php
AddHandler application/x-httpd-php5 .html .htm .php

Load different pictures each time.

Just add the following codes within the body:

<script language=”JavaScript”>

var how_many_ads = 5
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;

if (ad==1){
url=”http://kingphp.com“;
alt=”ad1″;
banner=”img/ad1.jpg”;
width=”240″;
height=”320″;
}

if (ad==2) {
url=”http://kingphp.com“;
alt=”ad2″;
banner=”img/ad2.jpg”;
width=”240″;
height=”320″;
}

if (ad==3) {
url=”http://kingphp.com“;
alt=”ad3″;
banner=”img/ad3.jpg”;
width=”240″;
height=”320″;
}

if (ad==4) {
url=”http://kingphp.com“;
alt=”ad4″;
banner=”img/ad4.jpg”;
width=”240″;
height=”320″;
}

if (ad==5) {
url=”http://kingphp.com“;
alt=”ad5″;
banner=”img/ad5.jpg”;
width=”240″;
height=”320″;
}

document.write(’<center>’);
document.write(’<a href=\”‘ + url + ‘\” target=\”_blank\”>’);
document.write(’<img src=\”‘ + banner + ‘\” width=’)

That’s all.

</script>

Javascript Changing Picture

Ad the following code between head:



add the following code in the body:

That’s all.

PHP to detect mobile phones

The most efficient way to detect mobile phones with PHP, this simply queries the accept headers, the user agent and checks for any tell tale signs that the browser we’re sniffing is a mobile device. Read the rest of this entry »