Subversion-Projekte lars-tiefland.content-management

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<html>
2
<head>
3
<title>eBay-Fehlercodes</title>
4
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5
<style type="text/css">
6
<!--
7
td {  font-family: Arial, Helvetica, sans-serif; font-size: 12px; vertical-align: top;}
8
-->
9
</style>
10
</head>
11
 
12
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
13
<table width="100%" border="0" cellspacing="2" cellpadding="2">
14
  <?
15
	$counter=0;
16
	$errors=unserialize(stripslashes($_GET[error]));
17
	foreach($errors as $error)
18
	{
19
?>
20
  <tr <? if (++$counter % 2) {echo "bgcolor=#DDDDDD";} ?>>
21
    <td width="5%"><?=$error[Code];?></td>
22
    <td width="95%"><?=htmlentities($error[LongMessage]);?></td>
23
  </tr>
24
<?
25
	}
26
?>
27
</table>
28
</body>
29
</html>