MS-Tropical/app/templates/comments/episodeform.php

12 lines
508 B
PHP
Raw Normal View History

<?php
$template = <<<TMP
<form action="../Resources/Scripts/PHP/Hubs/CommunityHub.php?action=episodeComment&epID={{{epid}}}&show={{{id}}}" method="post" style="padding-left: 12px; margin-top: 36px; padding-top: 16px;">
<h3>Post a comment</h2>
<textarea name="theComment" style="width: 76%; min-height: 60px; margin-bottom: 8px; float: left;"></textarea>
<input class="blueButton" type="submit" name="postsubmit" value="POST" style="float: right;">
<div class="clear"> </div>
</form>
TMP;
?>