For forms, I usually create an HTML page with <form action=file.php method=post(or get)>
Then write in file.php:
<?php
$useremail = $_GET['email'];
$title = $_GET['title'];
$description = ....
?>
Then either build an email message to myself or enter the info into a MYSQL DB (or both).
Let me know if you were looking for more detailed info
