<form id="tagging_form" name="tagging_form" action="action_add_tag.php" method="post">
<label for="tags">Add New Tag:</label>
<input type="text" name="tag" id="tag" />
<input type="hidden" name="adId" value="<?php echo $_GET['id']; ?>" />
<div style="margin-top:15px;margin-bottom:15px;"><?php
require_once('recaptchalib.php');
$publickey = "***************"; // you got this from the signup page
echo recaptcha_get_html($publickey);
?>
</div>
|