Ljrbrasil Postado Dezembro 17, 2010 Denunciar Share Postado Dezembro 17, 2010 pessoalpeguei um mural de recados e e modifiquei colocando os campos necessários, mas a pagina de leitura dos recados não esta aprecendo o que esta no bd alguém pode me ajudar.? <title>Envio de Vendas Pós</title><?phprequire('conecta.php');$sql = "SELECT*FROM livrodevisitas";$limite = mysql_query("$sql"); echo" <p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\"> </p> <p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\"> <hr size=\"1\" width=\"50%\"> <p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\"> <font face=\"Century Gothic\" size=\"2\" color=\"#008000\">Leitura das Vendas</font></p> <hr size=\"1\" width=\"50%\"> <p align=\"center\"> </p>"; while ($sql = mysql_fetch_array($limite)){ $nomecli = $_POST ['nomecli']; $acesso = $_POST ['acesso']; $data = $_POST ['data']; $promotor = $_POST ['promotor']; $plano = $_POST ['plano']; $protoc = $_POST ['protoc']; // $hora = strftime('%H:%M:S');//exibindo os dados echo" <div align=\"center\"> <table border=\"0\" width=\"50%\" id=\"table1\" class=\"ms-simple1-main\"> <!-- fpstyle: 1,011111100 --> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">Nome Cliente:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $nomecli</font></td> </tr> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">Nº Acesso:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $acesso</font></td> </tr> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">data:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $data</font></td> </tr> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">Promotor:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $promotor</font></td> </tr> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">Plano:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $plano</font></td> </tr> <tr> <td width=\"43%\" class=\"ms-simple1-left\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\">Protocolo:</font></td> <td width=\"56%\" class=\"ms-simple1-even\"> <p style=\"margin-top: 3px; margin-bottom: 3px\"> <font face=\"Century Gothic\" size=\"2\"> $protoc</font></td> </tr> </table><hr size=\"1\" width=\"50%\"></div>";}?> Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 svjets Postado Dezembro 17, 2010 Denunciar Share Postado Dezembro 17, 2010 Troque "$_POST" por "$sql". Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Ljrbrasil Postado Dezembro 17, 2010 Autor Denunciar Share Postado Dezembro 17, 2010 Então mas eu teria que fazer em todas as paginas esta mudança? e seria nesta parte do site?while ($sql = mysql_fetch_array($limite)){ $nomecli = $sql["nomecli"]; $acesso = $sql["acesso"]; $data = $sql["data"]; $promotor = $sql["promotor"]; $plano = $sql["plano"]; $protoc = $sql["protoc"]; $hora = $sql["hora"]; Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 svjets Postado Dezembro 17, 2010 Denunciar Share Postado Dezembro 17, 2010 Aí depende de página para página, não tenho como saber, rs. Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 Ljrbrasil Postado Dezembro 17, 2010 Autor Denunciar Share Postado Dezembro 17, 2010 De qualquer forma muito obrigado.bom tem como colocar um botão para deletar os dados do banco?valeu mesmo Citar Link para o comentário Compartilhar em outros sites More sharing options...
0 svjets Postado Dezembro 17, 2010 Denunciar Share Postado Dezembro 17, 2010 Sim, pra isso você pode usar um "<form>" ou link "<a>" para iniciar o script de exclusão do campo. Citar Link para o comentário Compartilhar em outros sites More sharing options...
Pergunta
Ljrbrasil
pessoal
peguei um mural de recados e e modifiquei colocando os campos necessários, mas a pagina de leitura dos recados não esta aprecendo o que esta no bd alguém pode me ajudar.?
<title>Envio de Vendas Pós</title><?php
require('conecta.php');
$sql = "SELECT*FROM livrodevisitas";
$limite = mysql_query("$sql");
echo"
<p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\">
</p>
<p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\">
<hr size=\"1\" width=\"50%\">
<p align=\"center\" style=\"margin-top: 0; margin-bottom: 0\">
<font face=\"Century Gothic\" size=\"2\" color=\"#008000\">Leitura das Vendas</font></p>
<hr size=\"1\" width=\"50%\">
<p align=\"center\"> </p>";
while ($sql = mysql_fetch_array($limite)){
$nomecli = $_POST ['nomecli'];
$acesso = $_POST ['acesso'];
$data = $_POST ['data'];
$promotor = $_POST ['promotor'];
$plano = $_POST ['plano'];
$protoc = $_POST ['protoc'];
// $hora = strftime('%H:%M:S');
//exibindo os dados
echo"
<div align=\"center\">
<table border=\"0\" width=\"50%\" id=\"table1\" class=\"ms-simple1-main\">
<!-- fpstyle: 1,011111100 -->
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">Nome Cliente:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $nomecli</font></td>
</tr>
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">Nº Acesso:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $acesso</font></td>
</tr>
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">data:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $data</font></td>
</tr>
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">Promotor:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $promotor</font></td>
</tr>
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">Plano:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $plano</font></td>
</tr>
<tr>
<td width=\"43%\" class=\"ms-simple1-left\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\">Protocolo:</font></td>
<td width=\"56%\" class=\"ms-simple1-even\">
<p style=\"margin-top: 3px; margin-bottom: 3px\">
<font face=\"Century Gothic\" size=\"2\"> $protoc</font></td>
</tr>
</table>
<hr size=\"1\" width=\"50%\"></div>";
}
?>
Link para o comentário
Compartilhar em outros sites
5 respostass a esta questão
Posts Recomendados
Participe da discussão
Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.