47 lines
1.1 KiB
PHP
47 lines
1.1 KiB
PHP
<?php
|
|
|
|
include("dialog.php");
|
|
include("menu.php");
|
|
|
|
$ls_Details_ = array(
|
|
"Location" => "Karlsruhe",
|
|
"Does" => "Coding",
|
|
"Contact" => Email("codingcat"),
|
|
"Website" => Url("http://www.alphanew.net/")
|
|
);
|
|
ProfileDialog("CodingCat", "images/codingcat.png", StringList($ls_Details_));
|
|
|
|
$ls_Details_ = array(
|
|
"Location" => "Mainz",
|
|
"Does" => "Coding",
|
|
"Contact" => Email("tggc"),
|
|
"Website" => Url("http://www.games-net.de/hosted/tggc/")
|
|
);
|
|
ProfileDialog("TGGC", "images/tggc.jpg", StringList($ls_Details_));
|
|
|
|
$ls_Details_ = array(
|
|
"Location" => "Münster (Westf.)",
|
|
"Does" => "Coding",
|
|
"Contact" => Email("hel"),
|
|
);
|
|
ProfileDialog("Hel", "images/hel.jpg", StringList($ls_Details_));
|
|
|
|
$ls_Details_ = array(
|
|
"Location" => "Darmstadt",
|
|
"Does" => "Coding",
|
|
"Contact" => Email("xtr1m"),
|
|
"Website" => Url("http://www.xTr1m.com")
|
|
);
|
|
ProfileDialog("xTr1m", "images/xtr1m.jpg", StringList($ls_Details_));
|
|
|
|
$ls_Details_ = array(
|
|
"Location" => "Mainz",
|
|
"Does" => "Music",
|
|
"Contact" => Email("rayn"),
|
|
"Website" => Url("http://ptrance.de")
|
|
);
|
|
ProfileDialog("ptrance'raYn", "images/rayn.jpg", StringList($ls_Details_));
|
|
|
|
include("footer.php");
|
|
|
|
?>
|