Tengo un código que me extrae una dirección web insertada en una base de datos
Código PHP:
defined('_JEXEC') or die('Restricted access');
global $mainframe;
$db = &JFactory::getDBO();
$user = &JFactory::getUser();
$pathway = &$mainframe->getPathway();
unset($pathway->_pathway);
$pathway->addItem($this->items->title, '');
$web = str_replace("http://","",$this->items->url);
$web = "http://" . $web;
$ip = $_SERVER['REMOTE_ADDR'];
Código PHP:
<li>Web: <a href="<?php echo $web; ?>" rel="nofollow" title="<?php echo $this->items->title; ?>" target="_blank"><strong><?php echo $web; ?></strong></a></li>
Saludos y muchas gracias por su ayuda