Pesquisar na Comunidade
Mostrando resultados para as tags ''banco_de_dados''.
Encontrado 1 registro
-
Senhores bom dia, Me ajdua com essa duvida, estou criando um sistema de tarefa onde tenho: PHP (Formulario) descrição da tarefa hora inicial hora final Banco Id, descricao, horaini, horafinal Como faço para que quando cadastrado no banco na hora exata ele mostre na tela? Eu tenho um codigo feito em java script mais não sei como tranformar em php + mysql para ser gerenciavel segue codigo: <html> <head> <title>.:: tAsk! - Tarefas diárias ::.</title> <style> .lrt{ font-family: Trebuchet MS ; font-size: 65px; font-style: Italic; color: #033C94; } .lrt1{ font-family: Trebuchet MS ; font-size: 40px; font-style: Italic; color: #033C94; } .clck{ font-family: Trebuchet MS ; font-size: 95px; font-style: Italic; color: #033C94; } </style> <script type="text/javascript" src="../extra/date_time.js"></script> </head> <body> <div align="center"> <table> <tr><td align="center" height="300px"><!-- Logo todo! --> <img src="imagens/lgtd2.png" style="width: 389px; height: 199px" > </td></tr> <tr><td class="lrt" align="center"><!-- Script de tarefas --> <SCRIPT LANGUAGE = "JavaScript"> <!-- theDate = new Date() theHour = theDate.getHours() theMin = theDate.getMinutes() <!-- Cadastramento de tarefas --> var a1 = "07:00 - Teste URA's CAIXA"; var a2 = "10:00 Monitoração Orbitall"; var a3 = "10:00 Enviar E-mail da Monitoração Orbitall"; var a4 = "14:00 - Teste URA's CAIXA"; var a5 = "19:00 - Baixa WCA"; var a6 = "21:00 - Teste URA's CAIXA"; var a7 = "22:15 - Checklist T3 e envio de e-mail padrão"; var a8 = "22:45 - Cadastro SDO e envio de e-mail padrão"; var a9 = "00:45 - Envio IDs Trabalhados para WCA e envio de e-mail padrão"; var a10 = "01:30 - Validação de laudos T3 e envio de e-mail padrão"; var a11 = "03:30 - Preenchimento de Ocorrências (CAC, 102 e TLV) e envio de e-mail padrão"; var a12 = "04:45 - Validação da Folio do CITI e envio de SMS padrão"; var a13 = "16:00 - Enviar controle de Chamados Externos"; var b1 = "Faltam menos de 5 minutos para</br>Teste URA's CAIXA"; var b2 = "Faltam menos de 5 minutos para</br>Monitoração Orbitall"; var b3 = "Faltam menos de 5 minutos para</br>Report discadores televendas"; var b4 = "Faltam menos de 5 minutos para</br>Baixa WCA"; var b5 = "Faltam menos de 5 minutos para</br>Enviar controle de Chamados Externos"; <!-- Força refresh a cada 7 segundos --> setTimeout('window.location.href=window.location.href;', 7000); <!-- Horário das tarefas --> if (theHour == 6 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" <!-- Cor do fundo da tela --> document.write(b1); <!-- Cor da fonte --> } else if (theHour == 7 && theMin < 20) { document.bgColor = "red" document.write(a1.fontcolor("white")); } else if (theHour == 8 && theMin > 25 && theMin < 59) { document.bgColor = "yellow" document.write(a2); } else if (theHour == 09 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" document.write(b2); } else if (theHour == 10 && theMin < 20) { document.bgColor = "red" document.write(a3.fontcolor("white")); } else if (theHour == 13 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" document.write(b1); } else if (theHour == 14 && theMin < 20) { document.bgColor = "red" document.write(a4.fontcolor("white")); } else if (theHour == 18 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" document.write(b4); } else if (theHour == 19 && theMin < 20) { document.bgColor = "red" document.write(a5.fontcolor("white")); } else if (theHour == 20 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" document.write(b1); } else if (theHour == 21 && theMin < 20) { document.bgColor = "red" document.write(a6.fontcolor("white")); } else if (theHour == 22 && theMin > 14 && theMin < 31) { document.bgColor = "red" document.write(a7); } else if (theHour == 22 && theMin > 44 && theMin < 59) { document.bgColor = "red" document.write(a8); } else if (theHour == 00 && theMin > 44 && theMin < 59) { document.bgColor = "red" document.write(a9); } else if (theHour == 01 && theMin > 29 && theMin < 59) { document.bgColor = "red" document.write(a10); } else if (theHour == 03 && theMin > 29 && theMin < 59) { document.bgColor = "red" document.write(a10); } else if (theHour == 04 && theMin > 44 && theMin < 59) { document.bgColor = "red" document.write(a10); } else if (theHour == 16 && theMin < 20) { document.bgColor = "red" document.write(a13.fontcolor("white")); } else if (theHour == 15 && theMin > 55 && theMin < 59) { document.bgColor = "yellow" document.write(b5); } else { document.write ("Sala Técnica - Sem tarefas pendentes!") <!-- Mensagem default --> } // --> </SCRIPT> </td></tr> <tr><td id="date_time" class="clck" align="center" height="350px"> <script type="text/javascript">window.onload = date_time('date_time');</script> </td></tr> </table> </div> </body> </html>