danpros / htmly

Simple and fast databaseless PHP blogging platform, and Flat-File CMS
https://www.htmly.com
GNU General Public License v2.0
1.01k stars 258 forks source link

How to Submit Enquiry Form together #760

Closed ledlig closed 1 month ago

ledlig commented 1 month ago

We have code like this:

`

Contact Us


Please enter a valid email address
Please enter a the Subject


`

danpros commented 1 month ago

Hello,

HTMLy allow custom template file for individual page. Read the docs.

If you have Contact Us page with slug contact-us. You can create static--contact-us.html.php and use your PHP code there.

And HTMLy also automatically include the functions.php if this file exist in theme folder. When naming the function in theme functions.php, use themeName_functionName(), to make sure not conflicted with existing function.

So you need custom code to achieve what you need.

danpros commented 1 month ago

I will close this one.