Editor überspringt zeilen

  • Guten Tag,


    Ich habe ein Problem mit dem CKeditor und weiß nicht wie ich des Lösen soll ^^


    Ich gebe z.B etwas ein und das gleiche in die nächste Zeile, und der Editor überspringt eine Zeile z.B


    So soll es sein:


    Zitat


    Hallo
    test


    So ist es:

    Zitat


    Hallo


    test


    Der Code:

    PHP
    <form action="" method="post"> 
        <textarea id='1' cols="50" rows="10" class="ckeditor" name="text">
            <?php echo $text; ?> 
        </textarea>
        <input type="submit" value="Speichern" />
  • Also, mit diesem Source-Code:


    PHP
    <form action="" method="post">
    <?php
    $text = null;
    if(isset($_POST["text"])) $text = $_POST["text"];
    ?>
    <textarea id='1' cols="50" rows="10" class="ckeditor" name="text"><?php if($text != null) echo $text; ?></textarea><br />
    <input type="submit" value="Speichern" />


    Funktioniert das alles wunderbar :D


    mfg. :rolleyes:

    ast2ufdyxkb1.png


    Leute, lernt scripten und versucht mal lieber etwas selber zu schreiben, als es aus einem GF zu kopieren. :S

  • Ich benutze die Version 4.4.4 vom 20. August, ich habe es im Code aktiviert:


    Code
    <script src="ckeditor/ckeditor.js"></script>


    Und mein Code war der:


    PHP
    <form action="" method="post"> 
        <textarea id='1' cols="50" rows="10" class="ckeditor" name="text">
            <?php echo $text; ?> 
        </textarea>
        <input type="submit" value="Speichern" />


    Und der Code von Kaliber funktioniert nicht, weil das Ergebnis das selbe bleibt

  • Also bei mir sieht das so aus funktioniert Problemlos:


    PHP
    <form method="POST">
    <pre><?php echo "<textarea name='agb_text' style='max-width:800; width:800; height:500;' >".$InhaltAGB."</textarea>";?></pre>
    <script type="text/javascript">
            CKEDITOR.replace( 'agb_text' );
          </script>
    <input name="save_AGB" value="Speichern" type="submit" />
    </form>


    //EDIT


    Ich glaub ich weiß deinen fehler er macht bei mir auch so eine "Leerzeile" allerdings nur wenn ich im Editor ENTER drücker wenn ich SHIFT+ENTER drücker macht er dies nicht.