I have a web page with a section called 'about us' that has a drop-down menu with three options: 'who we are' 'mission vision and values' and 'objectives'. In all I use same header and same footer. Even the same photo, just change the text. I have 3 different php for that, one for who we are, another for mission and vision and another for objectives. In all the content is the same except the text. What I would like to know is if you can do a single php 'about us' and show one or the other text depending on your choice in the drop-down. Thank you very much!
I'm using the symfony framework.
The header and footer are included as well
<div id="header"><?php include( 'header.php' ); ?></div>
<div id="contenido"><?php include( 'contenido.php' ); ?></div>
<div id="footer"><?php include( 'footer.php' ); ?></div>
And what I would like is to vary the content according to select one or another thing in the drop-down menu.