Mit dem Code könnt ihr Sachen in Hide Setzen wie z.b eure Email Adresse oder eure Download Links usw...
|
PHP-Quelltext
|
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
|
<?php
if(empty ($_POST['showmail'])) {
$output = "<form action="{$_SERVER['PHP_SELF']}" method="post">\n";
$output .= "<p>\n";
$output .= "<input type="submit" name="showmail" style="background-color: f5f5f5; color: 444444; font-size: 11pt; font-family: times; border: 1px;" value="Zeige alle Kontakt Daten" />\n";
$output .= "</p>\n";
$output .= "</form>\n";
} else {
$output = "
<p>
meine@email.tl
<br/>
Das ist nur ein Demo Inhalt hier kannst du reinschreiben was du willst Email od. Dl Links
<p>
\n";}
echo $output;
?>
|