Ir para conteúdo

POWERED BY:

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

locatelli

Gravando Arquivos

Recommended Posts

cara tu quer gravar em arquivo ou tu quer gravar no banco de dados????? bom em arquivo é assim:

<html>

<head>

<title>Meus Classificados</title>

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

</head>

<body bgcolor="#F2C47D" text="#000000" link="#339900" vlink="#0033CC" alink="#F2C47D">

<table width="751" height="*" border="0" cellpadding="0" cellspacing="0">

  <tr>

    <td width="87" valign="top" rowspan="2">

      <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#3399CC">

        <tr>

          <td width="87" height="238"></td>

        </tr>

      </table>

    </td>

    <td valign="top" height="23" width="577">

      <div align="center"><i><b><font size="4" face="Arial, Helvetica, sans-serif">Seu

        classificado foi gravado com sucesso!</font></b></i></div>

    </td>

    <td width="87" rowspan="2" valign="top">

      <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#3399CC">

        <tr>

          <td width="87" height="238"></td>

        </tr>

      </table>

    </td>

  </tr>

  <tr>

    <td valign="top" height="215"> <font face="Arial, Helvetica, sans-serif">

      <blockquote>

        <?php

//imformações

$anuncio = $classficado_1;

$nome = $nome_1;

$email = $email_1;

$tel = $tel_1;

//o classificado

$classificado = "Nome: $nome <br>

                E-mail: $email <br>

                Telefone: $tel <br>

                Anúncio: $anuncio<br><hr>";

//nome do arquivo texto:

$arquivo = "classificados.txt";

//texta se o arquivo existe

if(file_exists($arquivo)) {

  //abre o arquivo retornando o identificador id  

$id = fopen($arquivo,"a+");

  //grava a informaçao do arquivo

  $conteudo = fputs($id,$classificado);

  //imprime o conteúdo

  echo "

          Nome: $nome

            <br>

            E-mail: $email

            <br>

            Telefone: $tel

            <br>

            Classificado:<br>

            $anuncio

                        <br>Obrigado por anunciar se classificado aqui!<BR>

                        <a href=\"classificados.php\">Ler os Classificados</a>";

  //fecha o arquivo

  fclose($id);

}

else

{

echo ("Desculpe, mas foi impossivel concluir seu classificado.Tente novamente!");

}

?>

      </blockquote>

      </font> </td>

  </tr>

</table>

</body>

</html>

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.