Reputation: 3667
I have an HTML form and I also have the PHP Mail Handler file, but what I want to do is style the PHP file, with a design, how do I do this?
http://www.noxinnovations.com/portfolio/thecommonwealth/
If you click on the "Click To Inquire" you will see the form, and it leads to... contact.php on my server.
Any ideas on this one?
Upvotes: 0
Views: 186
Reputation: 2123
Well, the simplest way I believe is just to cover your response from contact.php with HTML
<html>
<head>
</head>
<body>
Some design
<?php echo $myresponse; ?>
Some design
</body>
</html>
Upvotes: 1