Português Posted June 28, 2012 at 06:10 PM Report Share #466261 Posted June 28, 2012 at 06:10 PM (edited) Boas... Eu estou a fazer um projeto sobre uma biblioteca e surgiu-me uma dúvida. Eu queria saber como posso meter uma espécie de carrinho , para fazer a requisição. Código: <table border="2px" class="tabela2"> <thead> <tr> <th width="35%">Nome</th> <th width="10%">Valor</th> <th width="10%">Data</th> <th width="10%">Estado</th> <th width="10%">Requisitar</th> </tr> </thead> <?php while ($res = mysql_fetch_array($resultado)) { extract($res); echo '<tr>'; echo '<td width="800">'.$nome.'</td>'; echo '<td>'.$valor.' €</td>'; echo '<td>'.$data.'</td>'; echo '<td>'; // estado 0: livre // estado 1: alugado if ($estado==0) { echo '<span style="color: Green">Disponível</span>'; echo'<td>'; echo '<img src="imagens/check.png"'; echo'</td>'; } else { echo '<span style="color: Red">Requisitado</span>'; echo'<td>'; echo '<img src="imagens/dialog-close.png"'; echo'</td>'; } echo '</tr>'; } echo '</table>'; } ?> </table> Os livros que estão disponíveis estão com a imagem "check.png" depois de carregado , passa-se para "dialog-close.png". Se alguém me poder ajudar ... Obrigado pela atenção. Edited June 29, 2012 at 10:31 AM by brunoais geshi!!! Link to comment Share on other sites More sharing options...
HappyHippyHippo Posted June 28, 2012 at 06:23 PM Report Share #466263 Posted June 28, 2012 at 06:23 PM Eu estou a fazer um projeto sobre uma biblioteca e surgiu-me uma dúvida. Eu queria saber como posso meter uma espécie de carrinho , para fazer a requisição. ????????? o melhor é dares uma exemplo muito bem explicadinho ... IRC : sim, é algo que ainda existe >> #p@p Portugol Plus Link to comment Share on other sites More sharing options...
ruimcosta Posted July 2, 2012 at 05:57 PM Report Share #466877 Posted July 2, 2012 at 05:57 PM É só programar o código necessário para isso! O que pretendes? Abraços e beijinhos,Rui Costa Link to comment Share on other sites More sharing options...
Português Posted July 3, 2012 at 05:49 PM Author Report Share #467061 Posted July 3, 2012 at 05:49 PM Já consegui 🙂 Obrigado pela ajuda na mesma 👍 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