Formulario php externo

Buenas tardes
Realice un formulario con php para envio de datos a una base de datos mysql, como puedo integrarla a un proyecto Hype y que el usuario al enviar llegue a mi base de datos

Hype doesn't have built-in form elements, so the basic way to do this would be by making a Rectangle Element, choosing Edit > Edit Element's Inner HTML and then adding <form> code with the action and method to your PHP file.

There's a variety of different ways to do this of course and really depends on your needs and how you may want the data to flow back and forth. For example, it may be better to use an XMLHTTPRequest to send data and get a response.

There are a lot of other posts when searching "php form" on the forums, so if those don't handle your needs feel free to elaborate on more details with what you are looking for.