ForumübersichtPHP & MySQL

probleme mit script - Seite 1

Einloggen
Benutzername:
Passwort:

Passwort vergessen?
Kostenlos
Anmelden
Geschlossen
AutorText


erzgebirgler2



Punkte: 1365
Hallo ich habe folgendes script gemacht das in einem chat smilies anzeigen soll....soweit war das jetzt kein großes problem nur möchte ich das z.b wenn man :lol: eingibt das auch ein lach smilie kommt wie muss ich das jetzt in dem script einstellen???

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$patterns = array ( "/(http\:\/\/[^\s]+)/i",
            "/(ftp\:\/\/[^\s]+)/i",      
            "/(mailto\:([^\s]+))/i",
            "/\:\)+/i",
            "/\:\-\)+/i",
            "/\;\)+/i",
            "/\;\-\)+/i",
            "/\:\|/i",
            "/\:\-\|/i",
            "/\:\(+/i",
            "/\:\-\(+/i",
            "/\*(.+)\*/i",
            "/\_(.+)\_/i",
            "/\r/i");
    $replace =  array ( "<a href=\"\\1\" target=\"_blank\">\\1</a>", 
            "<a href=\"\\1\" target=\"_blank\">\\1</a>", 
            "<a href=\"\\1\" target=\"_blank\">\\2</a>", 
            "<img src=\"img/sch1.gif\" width=\"50\" height=\"50\" alt=\"(:)\">",
            "<img src=\"img/sch2.gif\" width=\"50\" height=\"50\" alt=\":-)\">",
            "<img src=\"img/sch3.gif\" width=\"11\" height=\"11\" alt=\":(">",
            "<img src=\"img/smile.gif\" width=\"11\" height=\"11\" alt=\":)\">",
            "<img src=\"img/devil.gif\" width=\"30\" height=\"30\" alt=\":|\">",
"<img src=\"img/normal.gif\" width=\"11\" height=\"11\" alt=\":|\">",
            "<img src=\"img/normal.gif\" width=\"11\" height=\"11\" alt=\":|\">",
            "<img src=\"img/sad.gif\" width=\"11\" height=\"11\" alt=\":(\">",
            "<img src=\"img/sad.gif\" width=\"11\" height=\"11\" alt=\":(\">",
            "<b>\\1</b>",
            "<i>\\1</i>",
            "<br>\n");
    return preg_replace($patterns,$replace, $txt);
}
?>



zerfleischer
Super-Moderator



Punkte: 7884
http://www.ntmb.de/tutorials/schnipsel_view_315.html

Schau mal da. Achte aber darauf das zum anfang auf das Gästebuch von mir verwiesen ist. da findest du dann die Funktion zum einbinden.


Die Gymnasiasten sind so blöd.... die rechnen mit Buchstaben
Geschlossen