Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/11/2009, 14:06
abermudez
 
Fecha de Ingreso: noviembre-2009
Mensajes: 29
Antigüedad: 14 años, 5 meses
Puntos: 0
Respuesta: Simular iframe en php

Quiero que al momento de presionaro un vinculo

<a href="contenido2.php">contenido2</a>

se despliege y/o cargue en la parte contenido. funcionaria como un iframe de html

Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Curso de CSS</title>
<link href="css/cursocss.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="contenedor">
<?php include ("cabecera.php");?>
<div id="con-izq">
<?php include ("user.php");?>
<div id="menu">
<?php include ("menu-vitrinas.php");?>
<?php include ("menu-bodega.php");?>
<?php include ("menu-gerencia.php");?>
</div>
</div>
<div id="contenido">
<?php include ("main1.php");?>
<!-- FIN DE CONTENIDO -->

</div>
<!-- DIV BLANCO PARA EL FIN DE CONTENIDO -->
<div id="x-cabecera"></div>
<!-- FIN DIV CONTENEDOR -->
</div>
<?php include ("pie.php"); ?>
</body>
</html>