I’ve been trying to find a way to consolidate PHP include statements, such as:
<?php include ('form2.php'); ?><?php include ('form2c.php'); ?><?php include ('form3.php'); ?>
I’ve tried a number of possible solutions so far, none of which work, the three PHP books I have don’t discuss it, and I haven’t (yet) been able to find a solution online.
I thought something like:
<?php include ('form2.php, form2c.php, form3.php'); ?>
or:
<?php include ('form2.php', 'form2c.php', 'form3.php'); ?>
or:
<?php include ('form2.php'); 'form2c.php); 'form3.php'); ?>
or:
<?php include ('form2.php'), 'form2c.php), 'form3.php'), ?>
but none work.