Jump to content
Fórum Script Brasil
  • 0

(Resolvido) Próxima Linha


AlexArt5

Question

Olá Pessoal.

Não consigo fazer com que o código grave na próxima linha do arquivo.

Já tentei: \n , <br/> mas não pula para a próxima.

Aí vai o código :

Desde já , obrigado.

<?

    if($_GET['lista']="listar" ){
    $mes = fopen('pedido'.$_SESSION["num"].'.txt', 'w');
        for($i=0;$i<20;$i++){
        
            fwrite($mes, $_SESSION["loop"][$i])."\n"; 
        }
        fclose($mes);
    }
    ?>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Olá.

Resolvi este problema da seguinte forma:

Na página principal inseri: "\r\n" no final da array de sessão para que forçasse uma quebra de linha durante a gravação no arquivo

principal.php
<?
...

while($r = @mysql_fetch_object($t)){
$_SESSION["loop"][$i] = $r->texto[color="#FF0000"]."\r\n"[/color];    
}

...
?>
e na página que gravará o arquivo inseri : 'w+',0 (zero) que era o que faltava para finalizar.
confirmar.php
<?
session_start('pedido');
      $mes = fopen('pedido'.$_SESSION["num"].'.txt', [color="#FF0000"]'w+',0[/color]);
        for($i=0;$i<20;$i++){
            if (@$_SESSION["loop"][$i]>""){
                fwrite($mes, $_SESSION["loop"][$i]);
            }    
        }
        fclose($mes);
?>

Edited by AlexArt5
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...