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]
thisDate= today.getDate();
thisDay = today.getDay();
thisYear = today.getYear()
if (thisDay != 6 && thisDay != 3 ) {
DateSat = thisDate + (6 - thisDay );
if (thisDay < 3 ) {
DateWed = thisDate + (3 - thisDay );
if (num == 6 ) document.write('<input type="radio" name="dia" value="Sabado" onclick="validateRadio(this)"/> Sabado ('+ thisMonth, DateSat +')<input type="hidden" name="fechaS" value="'+ DateSat + ' de '+ thisMonth +'">')
if (num == 3 ) document.write('<input type="radio" name="dia" value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('+ thisMonth, DateWed +')<input type="hidden" name="fechaM" value="'+ DateWed + ' de '+ thisMonth+'">')
}
if (thisDay == 6) {
DateSat = thisDate + 7 ;
DateWed = thisDate + (3 - thisDay );
if (num == 6 ) document.write('<input type="radio" name="dia" value="Sabado" onclick="validateRadio(this)"/> Sabado ('+ thisMonth, DateSat +')<input type="hidden" name="fechaS" value="'+ DateSat + ' de '+ thisMonth +'">')
if (num == 3 ) document.write('<input type="radio" name="dia" value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('+ thisMonth, DateWed +')<input type="hidden" name="fechaM" value="'+ DateWed + ' de '+ thisMonth+'">')
}
if (thisDay == 3) {
DateWed = thisDate + 7 ;
DateSat = thisDate + (6 - thisDay );
if (num == 6 ) document.write('<input type="radio" name="dia" value="Sabado" onclick="validateRadio(this)"/> Sabado ('+ thisMonth, DateSat +')<input type="hidden" name="fechaS" value="'+ DateSat + ' de '+ thisMonth +'">')
if (num == 3 ) document.write('<input type="radio" name="dia" value="Miercoles" onclick="validateRadio(this)"/> Miercoles ('+ thisMonth, DateWed +')<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..