Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Action php


Murillo Lima

Question

Boa tarde galera!

alguém sabe me dizer qual o prolema nessa action q não ta abrindo a pagina requisitada?

tipo essa action, ta beleza... ta enviando tudo certin pro mysql, so q na hora de retornar pra pagina de recados ela não retorna, os arquivos estão todos no mesmo direitorio!

<?

$conexao = mysql_connect("localhost", "root", "");

$banco = mysql_select_db("muralassociacao");

?>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">

<?

$nome = $_POST['nome'];

$email = $_POST['email'];

$comentario = $_POST['comentario'];

$data = date("y-m-d");

$inserir = mysql_query ("INSERT INTO comentarios VALUES ('', '$nome', '$email', '$data', '$comentario')");

?>

<?

if ($inserir == 1){

?>

&lt;script>

alert("Agradecemos pelo seu Comentário!);

window.location="index.php";

</script>

<?

}else{

?>

&lt;script>

alert("Agradecemos pelo seu Comentario");

window

<?

}

?>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Tenta isso.

<?php

$conexao = mysql_connect("localhost", "root", "");

$banco = mysql_select_db("muralassociacao");

echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">";

$nome = $_POST['nome'];

$email = $_POST['email'];

$comentario = $_POST['comentario'];

$data = date("y-m-d");

$inserir = mysql_query ("INSERT INTO comentarios VALUES ('', '$nome', '$email', '$data', '$comentario')");

if ($inserir){

$msg = "Agradecemos pelo seu Comentário!";

}else{

$msg = "Infelizmente não foi possivel cadastrar o seu comentário!";

}

echo "<script>";

echo "alert(\"".$msg."\");";

echo "location.href=\"adulto.php\";";

echo "</script>";

?>

:P

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...