- replaced tons of tabs with spaces
- replaced <? with <?php for compatibility sake (see TODO and CODING_STANDARD to know more) - improved overall code lisibility
This commit is contained in:
@@ -1,10 +1,7 @@
|
||||
<?
|
||||
|
||||
/*
|
||||
* Application Database - Header
|
||||
*
|
||||
*/
|
||||
|
||||
<?php
|
||||
/*********************************/
|
||||
/* Application Database - Header */
|
||||
/*********************************/
|
||||
?>
|
||||
|
||||
<!-- start of header.inc -->
|
||||
@@ -12,12 +9,12 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Wine Application DB <?=$title?></title>
|
||||
<title>Wine Application DB <?php echo $title; ?></title>
|
||||
<meta HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990 00:00:01 GMT">
|
||||
<meta HTTP-EQUIV="Pragma" CONTENT="no-cache">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
||||
<link rel="stylesheet" href="<?=$apidb_root?>apidb.css" type="text/css">
|
||||
<script language="JavaScript" src="<?=$apidb_root?>scripts.js" type="text/javascript"></script>
|
||||
<link rel="stylesheet" href="<?php echo $apidb_root; ?>apidb.css" type="text/css">
|
||||
<script language="JavaScript" src="<?php echo $apidb_root; ?>scripts.js" type="text/javascript"></script>
|
||||
</head>
|
||||
|
||||
<body bgcolor="#E2E2E2" text="#000000">
|
||||
@@ -27,21 +24,21 @@
|
||||
<td>
|
||||
<table width="100%" border=0 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td width="100%"><a href="<?=$apidb_root?>"><img src="<?=$apidb_root?>images/winehq_top_logo.gif" width=300 height=99 border=0 alt="Wine HQ"></a></td>
|
||||
<td width="100%"><a href="<?php echo $apidb_root; ?>"><img src="<?php echo $apidb_root; ?>images/winehq_top_logo.gif" width=300 height=99 border=0 alt="Wine HQ"></a></td>
|
||||
<td>
|
||||
<img src="<?=$apidb_root?>images/blank.gif" border=0 width=10 height=1 alt="">
|
||||
<img src="<?php echo $apidb_root; ?>images/blank.gif" border=0 width=10 height=1 alt="">
|
||||
</td>
|
||||
<td width="100%" align="center" valign="middle">
|
||||
<!-- BANNER AD -->
|
||||
<table border=0 cellpadding=1 cellspacing=0>
|
||||
<tr><td valign="middle" align="center" class="black"
|
||||
><?=$banner_ad?></td
|
||||
><?php echo $banner_ad; ?></td
|
||||
></tr>
|
||||
</table>
|
||||
<!-- END BANNER AD -->
|
||||
</td>
|
||||
<td>
|
||||
<img src="<?=$apidb_root?>images/blank.gif" border=0 width=10 height=1 alt="">
|
||||
<img src="<?php echo $apidb_root; ?>images/blank.gif" border=0 width=10 height=1 alt="">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user