depending on the theme, mine is:

Code: 
<?php
include "funcs.php";
    if(isset($_POST) && !empty($_POST))
        $sub_success = $core->doSubmit();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Blog by MLP Design</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="author" content="webmasterneo" />
<meta name="description" content="Functional and affordable Web Design Solutions for Individuals and Small Businesses" />
<link rel="stylesheet" href="style.css" type="text/css" />
</head>

<body>

<div id="header">Blog
<div class="header"></div>
</div>

<div id="menu">
<div class="menu"><a href="index.php">Home</a></div><div class="menu"><a href="index.php?type=app">Apps</a></div><div class="menu"><a href="index.php?type=game">Games</a></div><div class="menu"><a href="index.php?type=movie">Movies</a></div><div class="menu"><a href="index.php?type=music">Music</a></div><div class="menu"><a href="submit.php">Submit</a></div>
</div>

<div id="body">
    <div class="content">
    <h1>Submit</h1>
                <form action="" method="post">
                <table width="100%" border="0">
                <tr><td><small>Title</small></td><td><small>URL</small></td><td><small>Type</small></td></tr>
                <?php
                for($i=1;$i<=10;$i++) {
                ?>
                <tr><td><input type="text" name="title[]" /></td><td><input type="text" name="url[]" /></td><td><select name="type[]">
                <?php
                foreach($core->allowed_types as $at) {
                    echo '<option value="'.$at.'">'.$at.'</option>';
                }
                ?>
                </select></td></tr>
                <?php
                }
                ?>
                <tr><td><small>Site Name</small></td><td><small>Site URL</small></td><td>&nbsp;</td></tr>
                <tr><td><input type="text" name="sname" /></td><td><input type="text" name="surl" /></td><td>&nbsp;</td></tr>
                <tr><td><small>Email</small></td><td>&nbsp;</td><td>&nbsp;</td></tr>
                <tr><td><input type="text" name="email" /></td><td>&nbsp;</td><td>&nbsp;</td></tr>
                <tr><td colspan="3" align="center"><input type="submit" value="Submit Downloads" /></td></tr>
                <tr><td colspan="3" align="center" style="color:#FF0000;"><Br /><?=$core->error?></td></tr>
                <tr><td colspan="3" align="center" style="color:green;"><Br /><?=$sub_success?></td></tr>
                </table>
                </form>
    </div>
    <div id="sidebar" align="center">
    <div class="topside">Profile</div>
            <a href="http://www.suppaddl.com/">SuppaDDL</a><br />
            <a href="http://www.majic-war3z.info/">Majic-War3z</a><br />
            <a href="index.php">Link 3 </a><br />
            <a href="index.php">Link 4</a><br />
            <a href="index.php">Link 5</a><br />
    <div class="topside">Search</div>
            <form action="index.php" method="post">
            <input type="text" name="q" />
            <input type="submit" value="Go" />
            </form>
        <div class="topside">Recent Searches</div>
<div class="topside"><?=$core->templateVar("recentSearches")?></div>
    </div>
    <div class="footer"></div>
</div>

</body>

</html>
Kr?niiK Reviewed by Kr?niiK on . WCDDL Submit Page My Code: <?php $fetch_downloads = true; $fetch_order = "id DESC"; include "funcs.php"; ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html dir="ltr" lang="en" xmlns="http://www.w3.org/1999/xhtml"> <head> Rating: 5