How to remove the special characters in title?

< ?php
$hotel=" How to study; PHP? ";
$foldername = stripslashes ($hotel);
//This erase white-spaces on the beginning and the end in each line of a string:
$foldername = preg_replace('~^(\s*)(.*?)(\s*)$~m', "\\2", $foldername);
//erases all NON-alfanumerics
$foldername = ereg_replace("[^[:alnum:] ]","",$foldername); Continue reading “How to remove the special characters in title?”

how to deal with a sentence as a page title?

<?php
$hotel=”  How to study PHP  “;
$hotel= trim($hotel);
$array=explode(” “, $hotel);

$hotel=implode(“-”, $array);
echo ($hotel);
?>

How to change phpld title seperator

Want to change the seperator between categories in the title tag?

At the moment the phpld generate the title as:
home – category – category – category
Continue reading “How to change phpld title seperator”

Get current url

<?php
//get the current page URL that is shown in the browser URL window

function curPageURL() {
 $pageURL = ‘http’;
 if ($_SERVER["HTTPS"] == “on”) {$pageURL .= “s”;}
 $pageURL .= “://”;
 if ($_SERVER["SERVER_PORT"] != “80″) {
  $pageURL .= $_SERVER["SERVER_NAME"].”:”.$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; Continue reading “Get current url”

How to control the tag cloud font size?

Just add the following code at any place you need to let the tag show:

if ( function_exists(‘wp_tag_cloud’) ) :

  • KingPHP Tags

      wp_tag_cloud(‘smallest=8&largest=8′);
  • Php test Navigation engine laguage, and Syetem language

    Php test Navigation engine laguage

    < ?php echo $_SERVER["HTTP_USER_AGENT"]; ?>

    Php test Syetem lang

    < ?php echo $_SERVER["HTTP_ACCEPT_LANGUAGE"]; ?>

    Continue reading “Php test Navigation engine laguage, and Syetem language”

    Disordered Chinese Characters in Phpld

    Open init.php, between
    $db->SetFetchMode(ADODB_FETCH_ASSOC);
    read_config($db);

    add MySQL_query(“SET NAMES ‘latin1′”);

    let them becomes: Continue reading “Disordered Chinese Characters in Phpld”

    Finding Items in an Array or not with PHP

    The problem: we have an array of items in PHP and we want to find out if a specific item is in the array. In code we can define the array as:
    Continue reading “Finding Items in an Array or not with PHP”

    how to add php code in phpld, find current url?

    It is very simple,just like this:

    {php}
    echo “PHP
    “;
    echo “I love PHP
    “;
    echo “included in .tpl
    “;
    {/php}

    Find the Current URL with PHP Continue reading “how to add php code in phpld, find current url?”

    Host 2 domains for the same wordpress database.

    Q:Me and a friend are trying to make http://kingphp.com and www.chinascience.org the same… I hosted his domain on my hosting as an add-on domain. Continue reading “Host 2 domains for the same wordpress database.”