Umbruch

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Umbruch

    Hi habe folgendes Problem:
    habe einen Text der mir aus ner DB geliefert wird. Diesen Text will ich per Tooltip anzeigen lassen.

    PHP-Code:
    <td class="text" onmouseover="Tip('mit <br />
    Umbruch ',DELAY,0, LEFT,true);"
    >Konzeption mit <br>
    Umbruch</td
    Bei dem Text aus der DB werden Zeilenumbrüche mit nl2br() in <br /> gewandelt.

    Es erfolgt aber auch ein Zeilenumbruch im Quellcode den JS mit "unterminated String Literal" quittiert....
    Weiß einer wie ich \n aus meinen String entfernt bekomme?
    THX in advance
    "I don't want to belong to any club that would accept me as a member."

    Groucho Marx

  • #2
    tippe wohl eher auf \n\r.
    probier mal trim ansonsten preg_replace.

    gruß
    peter
    Nukular, das Wort ist N-u-k-u-l-a-r (Homer Simpson)
    Meine Seite

    Kommentar


    • #3
      Fügt vor allen Zeilenumbrüchen eines Strings HTML-Zeilenumbrüche ein
      \n wird also dringelassen
      tippe wohl eher auf \n\r.
      Wohl eher \r\n
      @topicstarter
      Verzichte auf nl2br(). explode den String aus der DB am Zeilenumbruch. Implodiere das Array wieder mit <br /> als Trennzeichen, mach aber zuvor ein trim() auf jede Arrayzeile.

      Gruss

      tobi
      Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

      [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
      Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

      Kommentar


      • #4
        Wohl eher \r\n
        OffTopic:
        werd ich nie lernen, diese reihenfolge


        gruß
        peter
        Nukular, das Wort ist N-u-k-u-l-a-r (Homer Simpson)
        Meine Seite

        Kommentar


        • #5
          THX, könnt ihr mir noch die Syntax sagen, mit der explode \n\r als string separator akzeptiert?
          weil
          explode("\n\r", $array)
          scheint er nicht zu schlucken...
          "I don't want to belong to any club that would accept me as a member."

          Groucho Marx

          Kommentar


          • #6
            explode("\n\r", $array)
            \n oder \r\n aber sicher nicht \n\r
            Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

            [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
            Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

            Kommentar


            • #7

              jetzt klappts....
              "I don't want to belong to any club that would accept me as a member."

              Groucho Marx

              Kommentar

              Lädt...
              X