-
Notifications
You must be signed in to change notification settings - Fork 53
OUT_SNIPPET
Jurek Muszyński edited this page Oct 21, 2019
·
3 revisions
Writes snippet, that is content read from the file in snippets
directory, to output buffer. It is a hybrid solution, allowing mixed – partly rendered, partly static – content in one server response.
None
void render_about(int ci)
{
header(ci); // dynamically render header
OUT_SNIPPET("about.html"); // static part
footer(ci); // dynamically render footer
}