You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			PHP
		
	
| <?php
 | |
| /*
 | |
|  *
 | |
|  * @copyright (c) 2010 animegame.eu
 | |
|  * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public Licence
 | |
|  *
 | |
|  *//*
 | |
|  *  * Nur durch draufklicken ist das oeffnen Moeglich :D
 | |
|  */
 | |
| 
 | |
| 
 | |
| function encodeKrypted($string){
 | |
| 	$returnstring = '';
 | |
| 	for($i=0;$i<strlen($string);$i++){
 | |
| 		$char = substr($string, $i, 1);
 | |
| 		$char_ord = ord($char);
 | |
| 		$returnstring .= '&#'.$char_ord.';';
 | |
| 	}
 | |
| 	return $returnstring;
 | |
| }
 | |
| ?>
 | |
| 
 | |
| <html>
 | |
| <body>
 | |
|   <table width="100%" height="0" >
 | |
|     <tr>
 | |
|     <br>
 | |
|       <td width="562" height="0"><b><font size="4">Anschrift</font></b><p></p>
 | |
|       <br>
 | |
| 		<p><?php echo encodeKrypted($GLOBALS['admin_realname']); ?><br>
 | |
|       	<?php echo encodeKrypted($GLOBALS['admin_street']); ?><br>
 | |
|       	<?php echo encodeKrypted($GLOBALS['admin_plz']); ?></p>
 | |
|       <b><font size="4">Kontakt<p></p></font></b><br>
 | |
|       Email: <a href="mailto:<?php echo encodeKrypted($GLOBALS['email_webmaster']); ?>"><?php echo encodeKrypted($GLOBALS['email_webmaster']); ?></a><br>
 | |
|       Internet: <a href="<?php echo encodeKrypted($GLOBALS['server_url_long']); ?>"><?php echo encodeKrypted($GLOBALS['server_url_long']); ?></a>
 | |
|       <p> </td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|     	<td><font size="4">Externe Links:</td>
 | |
|     </tr>
 | |
|     <tr>
 | |
|  		<td>Der Inhaber übernimmt keine Haftung für externe Links. </td>
 | |
|     </tr>
 | |
|   </table>
 | |
| </body>
 | |
| </html>
 |