Ver Mensaje Individual
  #1 (permalink)  
Antiguo 11/07/2009, 02:28
yayo_cev
(Desactivado)
 
Fecha de Ingreso: julio-2004
Ubicación: https://t.me/pump_upp
Mensajes: 69
Antigüedad: 20 años, 4 meses
Puntos: 1
Consultar y mostrar email de una base de datos en php

Hola
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']; 
Y luego lo muestra
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>
¿Cómo puedo hacer esto para que también me extraiga de la misma base de datos el email insertado correspondiente a ese sitio Web?
Saludos y muchas gracias por su ayuda