codigo Agergar2.php
Código PHP:
<html>
<head>
<?php
$nombre=$_POST['nombre'];
$apellido=$_POST['apellido'];
$email=$_POST['email'];
$cuidad=$_POST['cuidad'];
$pais=$_POST['pais'];
$cantante=$_POST['cantantes'];
$cancion=$_POST['canciones'];
?>
<link href="estilo.css" rel="stylesheet" type="text/css" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style type="text/css">
<!--
.style1 {color: #0000CC}
-->
</style>
<link href="../estilo.css" rel="stylesheet" type="text/css">
</head>
<body>
<form id="form1" name="form1" method="post" action="<?=$_SERVER['PHP_SELF']?>">
<label>
<br />
<br />
<select name="select" onChange="this.form.submit()">
<option value="vacio" <?php if($_POST['select']=="vacio"){?> selected <?php }?>>Selecciona tipo de Noticias</option>
<option value="noticia" <?php if($_POST['select']=="noticia"){?> selected <?php }?>>Noticia</option>
<option value="reunion" <?php if($_POST['select']=="reunion"){?> selected <?php }?>>Reunion</option>
<option value="evento" <?php if($_POST['select']=="evento"){?> selected <?php }?>>Evento</option>
<option value="aviso" <?php if($_POST['select']=="aviso"){?> selected <?php }?>>Aviso</option>
</select>
<br />
<?php
if ($_POST['select']=="evento" || $_POST['select']=="reunion"){
?>
<br />
<br />
<input name="textfield" type="text" size="2" maxlength="2">
/
<input name="textfield2" type="text" size="3" maxlength="2">
/
<input name="textfield3" type="text" size="4">
<input name="fecha" Value="fecha" type="button" onClick="javascript:window.open('../calendario.php','popup','width=235,height=265,top=50,left=50,status=no,toolbar=no,scrollbars=no,location=no, rezizable=no')" />
<br />
<input name="" type="text" />
<br />
<input name="" type="text" />
<br />
<?php
}
if ($_POST['select']=="noticia" || $_POST['select']=="aviso"){
?><br />
<input name="" type="text" />
<br />
<input name="" type="text" />
<br />
<input name="" type="text" />
<br />
<?php
}
?>
<br />
<br />
</label>
</form>
</body>
</html>
Código PHP:
<link href="estilo.css" rel="stylesheet" type="text/css" />
<body class="index">
<table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="esqArribaIzquierda"></td>
<td class="bordeArriba"></td>
<td class="esqArribaDerecha"></td>
</tr>
<tr>
<td class="bordeIzquierda"></td>
<td>
<table align="center">
<?php
include("funciones.php");
$mess = $_GET['mess'];
$anio = $_GET['anio'];
$meses=array("1"=>"Enero","2"=>"Febrero","3"=>"Marzo","4"=>"Abril","5"=>"Mayo","6"=>"Junio","7"=>"Julio","8"=>"Agosto","9"=>"Septiembre","10"=>"Octubre","11"=>"Noviembre","12"=>"Diciembre");
if($mess == "" || $anio == ""){
$anio = date("Y");
$mess = date("n");
}
$ultimo = date("t",mktime(0, 0, 0, $mess, 1, $anio));
if($mess == '12' || $mess == '1'){
if($mess == '12'){
$next = 1;
$prev = $mess -1;
$anion = $anio + 1;
$aniop = $anio;
}
if($mess == '1'){
$next = $mess + 1;
$prev = 12;
$anion = $anio;
$aniop = $anio -1;
}
}else{
$next = $mess + 1;
$prev = $mess - 1;
$aniop = $anio;
$anion = $anio;
}
?>
<tr><th colspan="7"><?=$anio?></th></tr><tr>
<tr><td><a href='calendario.php?mess=<?=$prev?>&anio=<?=$aniop?>'><<</a></td><th colspan=5>
<?=$meses[$mess]?>
</th><td><a href='calendario.php?mess=<?=$next?>&anio=<?=$anion?>'>>></td></tr><tr>
<tr><td bordercolor="#000000">D</td><td>L</td><td>M</td><td>M</td><td>J</td><td>V</td><td>S</td></tr>
<?php
$diaa = "1";
while($diaa <= $ultimo){
$dia = date("D",mktime(0,0,0,$mess,$diaa,$anio)); # retorna el dia de la semana en letras...
$fecha = date("d",mktime(0,0,0,$mess,$diaa,$anio)); #retorna el dia del mes en 01/31
$dia_semana = date("w",mktime(0,0,0,$mess,$diaa,$anio)); #retorna el dia de la semana en numero
if($dia == "Sun"){?>
</tr><tr>
<?php
}
if($fecha == "01"){
$i=0;
while($i != $dia_semana){
?><td> </td><?php
$i++;
}
}
if($fecha==date("j") && $mess==date("n") && $anio == date("Y")){
?><td class="fechas"><a href='mostrarfecha.php?dia=<?=$fecha?>&mes=<?=$mess?>&anio=<?=$anio?>'><?=$fecha?></a></td><?php
}
else {
?><td><a href='mostrarfecha.php?dia=<?=$fecha?>&mes=<?=$mess?>&anio=<?=$anio?>'><?=$fecha?></a></td><?php
}
$diaa++;
}?>
</tr>
</table>
</td>
<td class="bordeDerecha"></td>
</tr>
<tr>
<td class="esqAbajoIzquierda"></td>
<td class="bordeAbajo"></td>
<td class="esqAbajoDerecha"></td>
</tr>
</table>
</body>
Alguien puede ayudarme o explicarme como hago pa retornar la fecha del calenadrio devuelta a la pagina del formulario, sin perder los valores que el usuario ya ha ingresado.
Agradesco de antemano toda la ayuda e infrmacion.
Atte.
Goomba