How to create an enquiry form in HTML or php and send it to my personnel email-id ?

You can use the mail function in php to send data via email.
http://formtoemail.com/ is free if you don't want the hassle of making it yourself.

If you do want to make one yourself, you have to first create an html form and send it to a php script. This is what the mail function looks like if you want to make it:

mail("<destination email>","<subject line of email>","<email message>","from: <source email>");

PS. You can grab and use variables for the information, such as having a field for users to enter their email and input that data into the <source email>

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.