Ver Mensaje Individual
  #7 (permalink)  
Antiguo 16/08/2007, 19:37
pedroremalas
 
Fecha de Ingreso: agosto-2007
Mensajes: 3
Antigüedad: 17 años, 5 meses
Puntos: 0
De acuerdo Re: Generar fecha apartir de datos de un formulario

Holaa!!

Bueno, promero que todo, muchas gracias por la ayuda, realmete a sido muuuuy util...

apartir de lo dicho por mount estube intentando consutruir la función la cual aparentemente me llego a funcionar:


Código PHP:
function fecha(num){



var 
myMonths=new Array(

"Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto",

"Septiembre","Octubre","Noviembre","Diciembre");

today=new Date()

thisMonth=today.getMonth()
thisMonth=myMonths[thisMonth]


thisDatetoday.getDate();
thisDay today.getDay();
thisYear today.getYear()
if (
thisDay != && thisDay != ) {
DateSat =  thisDate + (thisDay );
if (
thisDay ) {
DateWed =  thisDate + (thisDay );

if (
num == document.write('<input type="radio"  name="dia"  value="Sabado" onclick="validateRadio(this)"/> Sabado ('thisMonthDateSat +')<input type="hidden" name="fechaS" value="'DateSat ' de 'thisMonth +'">')
if (
num == document.write('<input type="radio"  name="dia"  value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('thisMonthDateWed +')<input type="hidden" name="fechaM" value="'DateWed ' de 'thisMonth+'">')

}


if (
thisDay == 6) {
DateSat =  thisDate +  ;
DateWed =  thisDate + (thisDay );

if (
num == document.write('<input type="radio"  name="dia"  value="Sabado" onclick="validateRadio(this)"/> Sabado ('thisMonthDateSat +')<input type="hidden" name="fechaS" value="'DateSat ' de 'thisMonth +'">')
if (
num == document.write('<input type="radio"  name="dia"  value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('thisMonthDateWed +')<input type="hidden" name="fechaM" value="'DateWed ' de 'thisMonth+'">')

}

if (
thisDay == 3) {
DateWed =  thisDate +  7  ;
DateSat =  thisDate + (thisDay );


if (
num == document.write('<input type="radio"  name="dia"  value="Sabado" onclick="validateRadio(this)"/> Sabado ('thisMonthDateSat +')<input type="hidden" name="fechaS" value="'DateSat ' de 'thisMonth +'">')
if (
num == document.write('<input type="radio"  name="dia"  value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('thisMonthDateWed +')<input type="hidden" name="fechaM" value="'DateWed ' de 'thisMonth+'">')

}




Pero desafortunadamente, hoy (Jueves 16 Ago) aparece la fecha de el Miercoles 15 Ago lo cual es un error..., deberia colocar la fecha del proximo Miercoles (Miercoles 22 Ago)...

Acabo de probar el script el derkenuke el cual me funciono perfectamente, denuebo, agradesco la ayuda. Ahora lo acomodare al formato que necesito.


Gracias...

Saludos..