Automatisches Link erzeugen aus einem wort

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

  • Automatisches Link erzeugen aus einem wort

    Hallo zusammen, ich habe da ein problem bei dem ich nicht wirklich weiter komme.

    Ich habe wörter die ich gerne automatisch in den Texten in links ersetzten möchte.

    'Test' zu <a href='example.com/test' a>Test</a>

    Zu mir ich bin der abselute nub und fange grade an. Ich habe jetzt schon ein paar Tage gesucht und leider nichts gefunden. Vieleicht habe ich auch die falschen wörter für die suche benutzt. Ich hoffe mir kann jemand helfen.


    Achja es ist kein Wordpress


    Vielen Dank

  • #2
    Die simpleste Form (da sollte man sogar als Anfänger drauf kommen)
    PHP-Code:
    <?php

       $word 
    "Test";
       
       
    $link '<a href="http://www.example.com/' strtolower($word) . '">' $word '</a>';
    ?>

    Kommentar


    • #3
      ähnliche Variante, aber mit Infos aus Datenbank

      Ich bin auch noch relativ neu und bin leider auch selbst nicht drauf gekommen, doch diese Variante von mmtuts (Youtube) finde ich gut:


      <a href='file.php?username=".$row['username'] ."'>


      Wie du siehst passt man hier den link immer an die Daten aus der DB an und kann die aufgerufene Seite auch immer direkt anpassen:


      $username= mysqli_real_escape_string($conn, $_GET['username']);


      $sql = "SELECT * FROM article WHERE username='$username'


      Obwohl es sehr simpel ist finde ich diese herangehensweise sehr cool
      Hoffentlich habe ich es halbwegs verständlich erklärt ^^

      Kommentar


      • #4
        Zitat von bandit600 Beitrag anzeigen
        Die simpleste Form (da sollte man sogar als Anfänger drauf kommen)
        PHP-Code:
        <?php

           $word 
        "Test";
           
           
        $link '<a href="http://www.example.com/' strtolower($word) . '">' $word '</a>';
        ?>

        Ja so weit war ich auch schon. Aber es geht hier um ca. 30 unterschiedlicher wörter die jeder für sich ein eigenen Link hat.

        Ich sage schon mal Vielen Dank

        Kommentar


        • #5
          Alle Wörter die übersetzt werden sollen und schon ist in_array() dein Freund

          PHP-Code:
          $worte = array("Test""Bla""Foo""Bar");

          $blabla "Test";
          if(
          in_array($blabla$worte))
          {
              echo 
          '<a href="http://www.example.com/'.$blabla.'">'.$blabla.'</a>';

          Kommentar


          • #6
            Hi das ist alles schon recht cool. Aber ich habe bemerkt das ich mir mit dem erstellen mehr zeit nehmen sollte


            Wörter die verändert werden sollen z.B.: Wasser, Luft, Feuer



            Basic Text:

            <span>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, Wasser aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam Luft dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, Feuer consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a,</span>


            Der Php befehl soll den inhalt einer seite durchsuchen und die wörter durch zum Beispiel ersetzten.

            z.B. Feuer soll zu
            HTML-Code:
            <a href="http://www.example.com/dasfeuer">Feuer</a>
            Basic Text:

            <span>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, Wasser aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam Luft dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, <a href="http://www.example.com/dasfeuer">Feuer</a> consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a,</span>

            [COLOR=#000000][COLOR=#DD0000]
            [/COLOR][/COLOR]
            Das es über Arreys geht weiß ich nur wie bekomme ich den link genau an diese stelle. Achja der Text kommt aus der Datenbank und kann nur zum visualisieren mit Links versehen werden da diese im Backend sonst zu einem absturz führen kann. So muss der text auch jedesmal beim aufbauen der seite neu mit links versehen werden zum glück haben wir den cach.


            Ich hoffe ihr könnt mir helfen?

            [COLOR=#000000][COLOR=#DD0000]
            [/COLOR][/COLOR]
            Zuletzt geändert von seocheck; 27.02.2019, 15:07.

            Kommentar


            • #7
              Dann kommt zum Code oben noch die Funktion PHP: str_replace - Manual

              Kommentar


              • #8
                Oder strtr mit assoziativem Array.

                Kommentar


                • #9
                  you know we also made such task for bank system, there I own one Fishka bone card and blue one.
                  So, did you get inside the RegExp?
                  Try this preg_match('/\<a href="[0-9a-zA-Z]+"\>[0-9a-zA-Z]+\<\/a\>/su', $link, $matches);
                  In this case you would get the 3 items array, where first element would be whole string of link,.eg "<a href='simple.HTML......", second inbound element the junk of link href, the third element is title of the link.
                  So the case of practise for you is to modify the regular expression, so it could really absorb the dot symbol, like [0-9a-zA-Z\.]+ I don't at a time remember, because you can get the.$matches equal to NULL, OK?

                  Kommentar


                  • #10
                    and use in case mb_substr if you want the string functions, because they might be multibyte....

                    Kommentar


                    • #11
                      So look.
                      First of all I'd like to say that we were going to Atl service car station to get the Subaru imprezza turbo engine to be remodified. We went to manager and asked Can you install new clutch a ne expose the turbo torque for intake on 7000 Rpms - No, its impossible, because you should make the rubber to be exposed the fittings and then as.we can advice you 5000 Rpms with twinturbo and turbogap.
                      As for second then came the dealer from store electronics and said I'd like to sell you Amway clutch but without topics I have 5 dealerships in Ukraine where we can take to our side -20 discount. The proposition was nice.
                      As for third not far away ago I developed the new slider plugin for Joomla or WordPress don't exactly know and there with jQuery ui was.the method to shuffle the slides like to make ordering positions in slider and got sold him for 100-200 bucks for small dealerships.
                      So a little bit trended.
                      And you know if you would take the money from your teammates you can be very impressive in dollars.
                      #200k #flash

                      Kommentar

                      Lädt...
                      X