Yes, you can change the HTML part of the page to anything you want.
Here's the instruction (again) how to make feedback.php with BlueVoda:
1. Create a new page with BlueVoda and save is as 'feedback.bvp'.
2. Select View->Page HTML from the menu
3. Select the Inside Body tag and enter this code:
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "feedback@yourdomain.com";
$mailsubj = "Feedback form";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
?>
4. Do the usual page formatting.
5. Select View->Page Properties from the menu
6. Set the file extension to php
5. Publish the page to your VodaHost account.
Notes:
- Instead of feedback you can give it any name you like.
- The blue text in the code above can be changed to anything you like, but be sure you keep the double quotes.
- Make sure the Action property of your form is set to feedback.php