I need to use dynamic variable names to create an article template:
$templatesAr = array("intro","paragraphs","image","conclusion","h2");
$intro = "Intro";
$paragraphs = "Paragraphs";
$image = "image.png";
$conclusion = "Conclusion";
$h2 = "Heading";
$articletemplateAr = array("h2", "intro", "image",
"h2", "paragraphs", "h2", "conclusion");`
How to echo $article in order from $articletemplateAr:
$article = $h2 . $intro . $image . $h2 . $paragraphs . $h2 . $conclusion;