Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've this code:

foreach($result as $i->$res)
{
    $link = "Company/" . str_replace(" ", "-", $view->result[$i]->node_title);

    $query = mysql_query("select * from url_alias where alias = '$link'");

    if(mysql_num_rows($query) > 0)
    {
        $result[$i]->node_title = "<a href = 'http://www.google.com'>asdf</a>";
    }
    else
    {
        $result[$i]->node_title = $result[$i]->node_title;
    }           
    $i++;
}

How can I dispaly anchor text as link without echo or print it? For now the anchor text just display as a plain text. Thanks in advance.

share|improve this question
   
What framework/cms is this? – Dainis Abols Nov 29 '12 at 9:47
what do u mean by .. without echo or print.. and why ?? just echo the anchor and till will print as a link.. – bipen Nov 29 '12 at 9:48
1  
@Dainis, i am using drupal and trying to alter views result using hook_view_pre_render. – user1814734 Nov 29 '12 at 9:49
1  
@bipen, i can't echo/print it, because i need to add the result into a block in Drupal. – user1814734 Nov 29 '12 at 9:51

1 Answer

if your page is html file

then echo the link like this

   <a href = 'http://www.google.com'>asdf</a>

if your page is php then echo the link as you writed.

if your page is html then it will not work the link.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.