Trojaner-Board

Trojaner-Board (https://www.trojaner-board.de/)
-   Alles rund um Windows (https://www.trojaner-board.de/alles-rund-um-windows/)
-   -   Message - Service (cgi) (https://www.trojaner-board.de/5089-message-service-cgi.html)

hel 01.04.2003 14:52

Hi leute!
Ich suche ein CGI - Script, wo man (auch als Gast) eine Nachricht in eine Textzeile schreiben kann und diese dann in eine Datenbank eingetragen wird - kennt da zufällig einer von euch eine Seite, wo man solche Scripts findet?

Gruss,
:D hel

Kistbier 01.04.2003 15:02

</font><blockquote>Code:</font><hr /><pre style="font-size:x-small; font-family: monospace;">&lt;?php

$conn = @mysql_connect(&quot;host&quot;, &quot;user&quot;, &quot;pass&quot;) or die(mysql_error());

@mysql_select_db(&quot;db&quot;, $conn);

$sql = &quot;insert into tabelle (text)&quot;;
$sql .= &quot; values &quot;;
$sql .= &quot;('&quot;. addslashes($text) .&quot;')&quot;;

@mysql_query($sql) or die(mysql_error());

?&gt;</pre>[/QUOTE]da pappste jetzt noch nen vernünftige fehler-abfangjäger davor und fertich.


Alle Zeitangaben in WEZ +1. Es ist jetzt 07:16 Uhr.

Copyright ©2000-2025, Trojaner-Board


Search Engine Optimization by vBSEO ©2011, Crawlability, Inc.

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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131