<?php
$subjects['1'] = 'What is the Database Host?';
$messages['1'] = 'This is the MySQL Host, generally this field is localhost.';
$subjects['2'] = 'What is the Database Name?';
$messages['2'] = 'This is the MySQL database name, generally this is in the format username_database.';
$subjects['3'] = 'What is the Database Username?';
$messages['3'] = 'This is the MySQL database username, generally this is in the format username_database';
$subjects['4'] = 'What is the Database Password?';
$messages['4'] = 'This is the MySQL database password.';
$subjects['5'] = 'What is the Database Prefix?';
$messages['5'] = 'This is the text that follows the table names.';
$subject = $subjects[$_GET['id']];
$msg = $messages[$_GET['id']];
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>PHP Manual Creator Help: <?php echo $subject; ?></title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.style1 {
color: #FFFFFF;
font-weight: bold;
font-family: Tahoma, Verdana;
font-size: 14px;
}
.style2 {
font-size: 14px;
font-family: Tahoma, Verdana;
}
-->
</style></head>
<body>
<table width="500" height="200" border="0" cellpadding="4" cellspacing="0">
<tr>
<td height="20" bgcolor="#FF9900"><span class="style1"><?php echo $subject; ?></span></td>
</tr>
<tr>
<td valign="top"><span class="style2"><?php echo $msg; ?></span></td>
</tr>
<tr>
<td height="20" valign="top" class="style2"><div align="right">Need more help?, <a href="http://www.kubelabs.com" target="_new">Ask Kubelabs</a></div></td>
</tr>
</table>
</body>
</html>