Ver Mensaje Individual
  #6 (permalink)  
Antiguo 01/02/2006, 04:41
Aintzane
 
Fecha de Ingreso: octubre-2005
Mensajes: 28
Antigüedad: 18 años, 6 meses
Puntos: 0
Hola a todos,
lo logramos!!!!!!!!!

Por si a alguien le puede servir de ayuda la prueba que he hecho es la siguiente:
principal.php

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>prueba</title>
</head>


<table width="640" border="1">
<tr><td><? $param="valor1"; include ("crear1.php");?> </td></tr>
<tr><td><? $param1="valor2";include ("crear2.php");?> </td></tr>
</table>
</html>


crear1.php

<?php
echo $param;
?>


NO es necesario utilizar $_GET.


crear2.php

<?php
echo $param1;
?>


Espero que le sirva a alguien, y muchisimas gracias por vuestra ayuda,
Aintzane

Última edición por Aintzane; 01/02/2006 a las 04:50