How to hide link in status bar

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How to hide link in status bar

    I cannot understand how can hide link in status bar to guest, my php codes below:

    /file column
    echo '<td width="75%" class="default_td" align="left" valign="top"><a class="default_a" href="', $this_file;
    $npart = $dir . $value;
    if (preg_match('/\|$/', $value)) //it is a link, not an actual file
    {
    $value = substr($value, 0, -1);
    $npart = substr($npart, 0, -1);
    $display = get_stored_info($value, $dir.$links_file);
    if ($display == '')
    {
    $display = $value;
    }
    echo 'dir=', translate_uri($subdir), '&amp;link=',
    translate_uri($value), '" title="Click here to Download ', $filename, '">',
    icon(ext($display)), htmlentities($display), '</a>';
    }

    and i have found a method, the method working html fine. but how can i apply the method my above php code or how it worked? the method below:
    <a style="cursor: pointer" onclick="javascript: window.location = 'http://www.mydomain.com/';">Go To SO</a>

    #2
    PHP Code:
    echo '<td width="75%" class="default_td" align="left" valign="top"><a class="default_a" href="javascript:void(0);" onclick="javascript: window.location = \''$this_file;
     
    $npart $dir $value;
     if (
    preg_match('/\|$/'$value)) //it is a link, not an actual file
     
    {
     
    $value substr($value0, -1);
     
    $npart substr($npart0, -1);
     
    $display get_stored_info($value$dir.$links_file);
     if (
    $display == '')
     {
     
    $display $value;
     }
     echo 
    'dir='translate_uri($subdir), '&amp;link=',
     
    translate_uri($value), '\'" title="Click here to Download '$filename'">',
     
    icon(ext($display)), htmlentities($display), '</a>';
     } 
    Advertise your mobile site for FREE with AdTwirl

    Comment


      #3
      Thanks, its hide link to guest. and now mouse hove showing under status bar with (javascript:void(0); but when click hyperlink, nothing work.

      Comment


        #4
        pls help me i need it very urgent

        Comment


          #5
          My problem solved, anyway thanks CT admin

          Comment

          Working...
          X