this is what i have so far:
$to = 'example@example.com';
$subject = 'Image Comment';
$message = 'i cant work out the code for the comment from textboox' . $_SERVER['REQUEST_URI'];
mail($to, $subject, $message);
}
i dont know how i would grab the text that is in the text box:
<form method="post" action="">
<textarea name="comment" rows="6" cols="40"></textarea>
<br />
<br />
<div id="comment_btn">
<input type="submit" name="Comment" value="Comment"/>
</div>
</form>