vote up 0 vote down star

can this code snippet be modified to reveal html coding?

<?php $_option = $this->getOption() ?>
<?php echo  $this->htmlEscape($_option->getTitle()) ?>

it is showing a title but in that title i have an href:

<a href="http://link" target="otherwindow">link</a>

instead of it appearing as a link it just shows me the code. i'd like it to be a clickable link.

possible?

flag
this is the original code snippet <?php echo $this->htmlEscape($_option->getTitle()) ?> – meandher Apr 21 at 7:12
<?php echo $this->getOption()->getTitle(); ?> – Mark Apr 21 at 7:28

1 Answer

vote up 2 vote down check

Yes, just remove the $this->htmlEscape() and leave the $_option->getTitle()

The escape function is to provide just the functionality of not being able to use (or inject) html commands or javascript.

link|flag
great. works exactly as i want. i'm using it to modify a magento install and i have very little knowledge of php (obviously) and my google searches of the snippet were not helpful. thanks for the rapid response! – meandher Apr 21 at 7:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.