Hola
losporros
Prueba este código:
Código PHP:
hoy = new Date();
i=0;
while (i<3) {
hoy.setTime(hoy.getTime()+24*60*60*1000); // añadimos 1 día
if (hoy.getDay() != 6 && hoy.getDay() != 0)
i++;
}
fecha = hoy.getDate()+ '/' + hoy.getMonth()+1 + '/' + hoy.getFullYear();
document.write(fecha);
Saludos,