Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. $painel=mysqli_query($con,"select detalhe_sobre from anuncios where id = '$idcli'");
  3. while($painel_texto=mysqli_fetch_array($painel)){
  4. $texto_empresa = utf8_encode(strip_tags(nl2br($painel_texto['detalhe_sobre'])));
  5. }
  6. ?>
  7. <form class="frm-adm-painel" action="gravar-texto.php?cliente=<?php echo $idcli; ?>" method="post">
  8. <textarea name="textoempresarial" rows="10" placeholder="Texto sobre a Empresa"><?php echo $texto_empresa; ?></textarea>
  9. <button type="submit" name="botao">GRAVAR</button>
  10. </form>
  11.  
  12. <?php
  13. if (!empty($_GET['cliente'])){
  14. $idcli = $_GET['cliente'];
  15. $textoempresarial = utf8_encode($_POST['textoempresarial']);
  16. $painel=mysqli_query($con,"UPDATE anuncios SET detalhe_sobre = '$textoempresarial' where id = '$idcli'");
  17. header("location: painel.php?cliente=$idcli");
  18. }
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement