What is the best PHP landing page creation class? #landing page creation
Edit
by fernando Messina - 9 years ago (2016-01-25)
Create new PHP landing pages on the fly
| I need to create a new file from a template where it must be changed the image, some texts and some inputs on the form.
I've never done this before, so I'm really lost, any help? |
Ask clarification
2 Recommendations
Auto CMS: Generate a basic content site
This class can be used to generate a basic content site.
It can present a form in an administration page protected with a password to let the administrator set several options about common site content sections that it supports.
The class can generate PHP file with definitions that set configuration options according to the options the user set in the form.
The main application script includes the class and the generated options to determine how to present the site based on the option values.
Currently the class can present site pages with automatic headers, footers, a menu bar with links to an about section, news section,products and services, a contact form.
The page presentation is configurable with CSS styles.
| by Roberto Aleman package author 30 - 9 years ago (2016-01-28) Comment
I recommend my cms, Auto CMS, although I have not updated lately, can generate everything you need as your question .. |
Puja: Template engine that compiles templates into PHP
This package is a template engine that compiles templates into PHP.
It can validate and compile a template file. The template syntax allows conditional sections that can be nested.
It can compile a given template file and generate a PHP script with code that generates the output taking the template parameters and replacing them in the respective template mark positions.
The output of the compiled templates is stored in cache files to prevent recompilation time overhead. It can recompile template files only if they changed.
It supports a debug mode to provide more information when template processing fails due to a syntax error or some other reason.
| by Manuel Lemos 26695 - 9 years ago (2016-01-26) Comment
I think you need a template engine that compiles HTML templates to PHP code.
This class can do that and also cache the generated PHP to avoid recompiling the same template over again. |