<?php
include('inc/php_include.php');
?>
<html>
<head>
<title>SEO Rank Checker v.2.1</title>
<link href="inc/styles/styles.css" rel="stylesheet" type="text/css"></link>
</head>
<body>
<h1>SEO Rank Checker v.2.1</h1>
<?php echo $keyword_table; ?>
<hr>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<table>
<tr>
<td>URL: </td>
<td><input type="text" name="url" value="<?php echo $url; ?>" size="40" /> <em>ex. mysite.com</em><br />
</td>
</tr>
<tr>
<td>Keywords: </td>
<td><em>Enter each keyword on it's own line</em><br />
<textarea name="keyword" cols="30" rows="10"><?php echo $keyword_input; ?></textarea></td>
</tr>
<tr>
<td colspan="2" class="align-center"><input class="normal-input" type="submit" value="Check Rank >>" /></td>
</tr>
</table>
</form>
</body>
</html>