diabolickman Posted July 3, 2012 at 08:20 PM Report Share #467111 Posted July 3, 2012 at 08:20 PM (edited) Olá, estou a tentar fazer um calendário com PHP recorrendo ao jquery. Tenho o seguinte código: <!-- função jQuery --> <script type="text/javascript"> $(function(){ // Datepicker $('#datepicker').datepicker({ inline: true }); }); </script> <div id="datepicker" align="center"></div> E queria saber como, após o utilizador selecionar um dia, apanhar esse dia/data e passa-lo para uma variável em PHP...Estive a pesquisar e vi que muita gente usa através de um input text, mas aqui não consegui por a funcionar dessa maneira :S Desculpem a noobice, mas a pesquisa agora não funcionou, e por acaso nunca trabalhei com jquery desta maneira 🙂 Edited July 3, 2012 at 08:22 PM by diabolickman Link to comment Share on other sites More sharing options...
diabolickman Posted July 4, 2012 at 01:00 AM Author Report Share #467184 Posted July 4, 2012 at 01:00 AM Já consegui 🙂 .. Agora outra dúvida estupida...passar a variável de javascript para PHP? Tenho da seguinte forma: $variavel = 'document.write(texto)'; a variavel js "texto" contém a data. Agora eu queria saber como passar isso para php através de json...Alguém me sabe explicar? Link to comment Share on other sites More sharing options...
KTachyon Posted July 4, 2012 at 01:18 AM Report Share #467187 Posted July 4, 2012 at 01:18 AM Fazes uma página que devolve apenas o JSON: {'data':'2012-12-21'} E fazes o request dessa página no JavaScript: http://api.jquery.com/jQuery.getJSON/ “There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.” -- Tony Hoare Link to comment Share on other sites More sharing options...
diabolickman Posted July 4, 2012 at 02:06 PM Author Report Share #467246 Posted July 4, 2012 at 02:06 PM Fiz melhor 🙂 location.href="index.php?data=" + texto; E faz um refresh á página e com o php uso o GET e mostro o que está agendado para esse dia 🙂 Obrigado 🙂 Link to comment Share on other sites More sharing options...
HappyHippyHippo Posted July 4, 2012 at 02:21 PM Report Share #467255 Posted July 4, 2012 at 02:21 PM Fiz melhor 🙂 estás a dizer que fazer um reload completo da página é melhor que usar um simples e rápido AJAX ?? IRC : sim, é algo que ainda existe >> #p@p Portugol Plus Link to comment Share on other sites More sharing options...
MASNathan Posted July 4, 2012 at 02:28 PM Report Share #467259 Posted July 4, 2012 at 02:28 PM (edited) estás a dizer que fazer um reload completo da página é melhor que usar um simples e rápido AJAX ?? creio que ele queria dizer: "Fiz da forma mais fácil, não me apetecia pesquisar um forma melhor de resolver isto, assim funciona e tá a andar, perder tempo a aprender cenas engraçadas e tal não é coisa que me assista" * 😉 Sem ofensa* Edited July 4, 2012 at 02:28 PM by MASNathan Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now