put space on title

Discussion in 'PHP' started by 3walim, Jun 3, 2008.

  1. #1
    hello
    I’m so newbis on php and need your help about title
    I have this code
    $_page_title = $LANG["download_download"] .  $product_detail->product_name;
    PHP:
    $LANG["download_download"]=download
    it title for page called download.php

    the problem is there are no space for example
    <title>downloadmozilla </title>

    and I want make it
    <title>download mozilla </title>

    forgive me for my bad language and stupid question
     
    3walim, Jun 3, 2008 IP
  2. mehmetm

    mehmetm Well-Known Member

    Messages:
    134
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    110
    #2
    
    $_page_title = $LANG["download_download"]. ' ' .$product_detail->product_name;
    
    PHP:
     
    mehmetm, Jun 3, 2008 IP