Jump to content

[Resolvido] Requisição


Português

Recommended Posts

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 by brunoais
geshi!!!
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.