Código PHP:
<iframe src="<?php echo $urlrecibe;?>" height="100%" width="100%"></iframe>
Código PHP:
require ('xajax/xajax.inc.php');
function redirect($urlrecibe)
{
$objResponse = new xajaxResponse();
$objResponse->addAssign("","innerHTML",$urlrecibe); //método que debería cargar la variable de manera asíncrona en el iframe
return $objResponse;
}
$xajax = new xajax();
//$xajax->debugOn();
$xajax->registerFunction("redirect");
$xajax->processRequests();
//asi llamo a la función:
<a href="#" onclick="xajax_redirect('prueba2.html');">Productos</a>
De antemano gracias.