.v.i.s.i.t.o.r.s.

 


( 29 echte Personen sind seit dem 2.Februar 2002 eingetragen. )

29) online directory main wrote at 27.Mai 2005 um 10:43 Uhr:
Homepage: http://www.dirfor.com/Turkmenistan/
--
Thanks!
online directory.
comments:Turkmenistan's yellow pages


28) Rado Marok from nice wrote at 16.April 2005 um 13:24 Uhr:
--
test
www.google.com
test

27) Jone from USA wrote at 23.M�rz 2005 um 17:07 Uhr:
--
Good site!

26) marius from s�ddeutschland wrote at 15.Januar 2005 um 21:38 Uhr:
--
hat sich ja wenig getan in letzter zeit

25) Christiane from de wrote at 25.M�rz 2004 um 08:10 Uhr:
Homepage: http://www.urlaubonline24.de
--
Hallo
Tolle Homepage, sehr �bersichtlich und informativ.
Ich werde gerne �fter mal vorbeischauen um mich nach Neuigkeiten umzusehen.

Gru�
Chrissi

24) benna from Southern Hemishpare wrote at 30.Januar 2004 um 11:56 Uhr:
Homepage: http://www.andelshofen.de
--
Hi Martin,
Gruss von der Suedhalbkugel. Haben heute 35 und Sonnenschein. Bei euch liegt wohl Schnee.
Hier das neue Layout meiner Seite.
Gruss

23) !!�|||||||||||||||| [email protected]from B-_-E-_-R-_-L-_-I-_-N �||||||||||||| 6 wrote at 27.August 2003 um 11:35 Uhr:
Homepage: http://�██ _�██ _�██_�██ _�██ _�██_streetart.info██████�-_-c[_][email protected]
occupation: �▓▓▓▓▓▓██>art
picture:

--
�██ _�██ _�██_�██ _�██ _�██

news:
the " SeX<██▓▓▓▓▓▓� " will highlight searchengine results
target="_blank">http://--__-->@google.com/oe=utf-8&num=100&[email protected]
[another thing are top 100 listings]

wwwwww.6reatings_from_the_Master_of_the_6reatest_streetart_Quantity_named_�||||||||||>[email protected] t.info

22) till kolshorn from berlin wrote at 25.August 2003 um 21:54 Uhr:
--
hallo martin!
brav wie ich bin habe ich deinen orangen trinkbecher wieder mit nach
berlin gebracht! und gesp�lt! also meld dich wenn du ihn noch brauchst!
schade hatte mich auf fotos von easa gefreut.
gru�, till

21) Jostfrom Testplatz Teledat 120X wrote at 13.Juni 2003 um 13:50 Uhr:
--
heidiHi, ich brauch Deine Hilfe
bei meinem Eudora, wann kannst Du mal?
nen sch�nen Freitag w�nscht jost

20) Philippfrom marocco wrote at 10.Juni 2003 um 13:41 Uhr:
--
hey martin, warum ist das pic of the day nicht aktuell? heute ist doch schon der 10...
gruss aus der jurafuck, philipp

19) jostfrom berlin wrote at 22.Mai 2003 um 17:58 Uhr:
--
hi martin, hinkst aber ganz sch�n hinterher mit den dailypix, wie?
wattn los ,mann? dein jost

18) Philippfrom taiwan wrote at 15.Mai 2003 um 13:53 Uhr:
--
zeit, mal wieder einen zusammen zu bauen, oder?

17) Red wrote at 13.Mai 2003 um 11:23 Uhr:
Homepage: http://amor.cms.hu-berlin.de/~h0444d17/
--
Schaut mal meine Seite! Eintritt auf eigene Gefahr... ;)

16) M.S. from Berlin, Hometown wrote at 29.April 2003 um 15:53 Uhr:
--
Ich will ja nicht klugschei�ern, aber am 2.4.2003 ist der alte Fritz zu sehen und nicht Kaiser-Wilhelm, lieber Martin ;-)

15) me from here wrote at 26.M�rz 2003 um 22:41 Uhr:
Homepage: http://home.snafu.de/nkomin/html/assembe.htm
--
#!/usr/bin/perl
##############################################################################
# Guestbook Version 2.3.1 #
# Copyright 1996 Matt Wright [email protected] #
# Created 4/21/95 Last Modified 10/29/95 #
# Scripts Archive at: http://www.worldwidemart.com/scripts/ #
##############################################################################
# COPYRIGHT NOTICE #
# Copyright 1996 Matthew M. Wright All Rights Reserved. #
# #
# Guestbook may be used and modified free of charge by anyone so long as #
# this copyright notice and the comments above remain intact. By using this #
# code you agree to indemnify Matthew M. Wright from any liability that #
# might arise from it's use. #
# #
# Selling the code for this program without prior written consent is #
# expressly forbidden. In other words, please ask first before you try and #
# make money off of my program. #
# #
# Obtain permission before redistributing this software over the Internet or #
# in any other medium. In all cases copyright and header must remain intact.#
##############################################################################
# Set Variables

$guestbookurl = "test.htm";
$guestbookreal = "test.htm";
$guestlog = "guestlog.html";
$cgiurl = "guestbook.pl";
$date_command = "/usr/bin/date";

# Set Your Options:
$mail = 1; # 1 = Yes; 0 = No
$uselog = 1; # 1 = Yes; 0 = No
$linkmail = 1; # 1 = Yes; 0 = No
$separator = 1; # 1 =

; 0 =


$redirection = 0; # 1 = Yes; 0 = No
$entry_order = 1; # 1 = Newest entries added first;
# 0 = Newest Entries added last.
$remote_mail = 0; # 1 = Yes; 0 = No
$allow_html = 1; # 1 = Yes; 0 = No
$line_breaks = 0; # 1 = Yes; 0 = No

# If you answered 1 to $mail or $remote_mail you will need to fill out
# these variables below:
$mailprog = "/usr/lib/sendmail";
$recipient = '[email protected]';

# Done
##############################################################################

# Get the Date for Entry
$date = `$date_command +"%A, %B %d, %Y at %T (%Z)"`; chop($date);
$shortdate = `$date_command +"%D %T %Z"`; chop($shortdate);

# Get the input
read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});

# Split the name-value pairs
@pairs = split(/&/, $buffer);

foreach $pair (@pairs) {
($name, $value) = split(/=/, $pair);

# Un-Webify plus signs and %-encoding
$value =~ tr/+/ /;
$value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C", hex())/eg;
$value =~ s/\n";
}

if ($line_breaks == 1) {
$FORM{'comments'} =~ s/\cM\n/
\n/g;
}

print GUEST "$FORM{'comments'}
\n";

if ($FORM{'url'}) {
print GUEST "$FORM{'realname'}";
}
else {
print GUEST "$FORM{'realname'}";
}

if ( $FORM{'username'} ){
if ($linkmail eq '1') {
print GUEST " \<";
print GUEST "$FORM{'username'}
\>";
}
else {
print GUEST " <$FORM{'username'}>";
}
}

print GUEST "
\n";

if ( $FORM{'city'} ){
print GUEST "$FORM{'city'},";
}

if ( $FORM{'state'} ){
print GUEST " $FORM{'state'}";
}

if ( $FORM{'country'} ){
print GUEST " $FORM{'country'}";
}

if ($separator eq '1') {
print GUEST " - $date


\n\n";
}
else {
print GUEST " - $date

\n\n";


14) mari from Marseille wrote at 18.M�rz 2003 um 17:02 Uhr:
--
Die Homepage vermittelt Inhalte erschuetternder Ehrlichkeit und tiefer Sinnlichkeit - ein zeitloses Meisterwerk der Dokumentation modernen deutschen Seins

13) �[_]-_-Master_of_the _6reatest_artquantit y_named_"6"[email protected] .info from B-_-E-_-R-_-L-_-I-_-N 6 wrote at 7.Januar 2003 um 07:44 Uhr:
Homepage: http://L�██_�██_�██_�██_�██[email protected]
occupation: art inventions
picture:

--
�██_�██_�██_�██_�██�██_�` 08;█_�██_�██_�██

hi
es gibt ein neues free werbefreies system unter http://log.ag
Eignet sich auch gut , um ein t�gliches pic zu posten ,so wie ich es auch mache, die Archivierung entf�llt.
target="_blank">http://-_-Mein_Log-_-@sex.log.ag

target="_blank">WWW.6ru[email protected]


�██_�██_�██_�██_�██�██_�` 08;█_�██_�██_�██

http://2-0.info<;=shortURL-_-Optimierte_Technik_einf�gen_von_Adr:_�[email protected] t.tk

12) fernsen from tue wrote at 31.Dezember 2002 um 19:47 Uhr:
--
wie - kein daily pic? na ja guten rutsch und so 'n quatsch - bis demn�chstig

11) ! �[_][email protected] fo from B-_-E-_-R-_-L-_-I-_-N 6 = center wrote at 11.November 2002 um 01:05 Uhr:
Homepage: http://1-l.de..c[_].�██..WWW�_6reatings_from_the_*[email protected]
occupation: art
picture:

--
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
�██████████████
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██
                    ██

10) philipp from lyon wrote at 13.Oktober 2002 um 19:56 Uhr:
--
hi martin,
dein heutiges bild des tages gef�llt mir sehr gut, zumal ich gerade mit lisa gesprochen habe, die sagte, es wuerde in berlin schneien. und das bild ist direkt hinter lisas wohnung aufgenommen worden. ansonsten hoffe ich, dass auch die anderen sachen so viel spass machen wie die gestaltung deiner website. ich fahre morgen fuer 3 wochen nach barcelona und werde spass an den unz�hligen gel�ndefahrtrn haben, die mir mit dem touareg bevorstehen. in madrid soll es �brigens auch schon geschneit haben. bis bald, philipp

9) tsoj from Berlin wrote at 9.Oktober 2002 um 21:59 Uhr:
occupation: twl-junk
--
biste schon wieder im b�ro am abeitn oda wat?


Anja hat sich nen neues stahlbett in auftrag gegeben
kannst es sonst auch gleich
holen

8) ale from livorno wrote at 7.September 2002 um 23:18 Uhr:
occupation: studentessa
picture:

--
if only I would write a message here...

7) [_]o1-l.de @rtist.infofrom o3o wrote at 7.September 2002 um 03:48 Uhr:
Homepage: http://1-l.de..c[_].C▒▒_C██ _WWW�_6reatings_from_the_*Master_of_the_6reatest_artquantity_named-_-www.*[email protected]
picture:

--
meine neueste kreationen paaend zu meiner kurzurl 1-l.de
C▒▒_C██ _C▒▒_C██ C▒▒_C██ __C▒▒_C██ _C▒▒_C██ _C▒▒_C██ C▒▒_C██ __C▒▒_C██ _

WWW�_6reatings_from_the_*Master_of_the_6reatest_artquantity_named-_-www.*[email protected]

6) (_)[email protected] .infofrom o3o wrote at 3.September 2002 um 02:14 Uhr:
Homepage: http://1-l.de.c[_][email protected]
picture:

--
hi
danke f�r die links.
Werbefreie 6b�s findest Du unter
freeguestbook.info

6ru�
6

5) Marc Torka from Paul-Robeson-Str. 46, 10439 Berlin wrote at 15.August 2002 um 16:36 Uhr:
--
Suchst Du immer noch nach einer Wohnung, wie w�re es mit unserer, weil wir auseinanderziehen. Melde Dich, sonst versuchen wir den Schei� andersweitig loszuschlagen

4) Marc Torka from Paul-Robeson-Str. 46, 10439 Berlin wrote at 8.Juni 2002 um 16:38 Uhr:
--
ich will raus

3) Fernando from Tubinga wrote at 2.Juni 2002 um 21:37 Uhr:
occupation: H�ndler antiker Panzer
--
T�ch mOrtn,
Waren ja nicht so viele G�ste da - so mache ich mich mal breit und ruf mal an
2) chfrom B wrote at 7.Februar 2002 um 01:07 Uhr:
--
servus alter haudegen.
was macht hamburg hafen?
sitze hier und sehe langsam
schwarz!!! KEIN WUNDER BEI
DEM LICHT! holmse mich von einem
st�bchen zum n�chsten,
freitag = endlich
INDEPENDENCE-DAY; mu�t kommen:
18.30 !!!!!!


1) mortn from berlin wrote at 2.Februar 2002 um 21:40 Uhr:
Homepage: http://www.koppenhoefer.com
occupation: sure
picture:

--
this is the 2nd test



mortn's guestbook had 15.429 visitors until 05th Feb 2006 thanks to thousands of advertising entries - then this service was cut

Seite: <<  <  11121314151617181920  >  >>  von 21