[Solved] select what is being shown on index, Php [closed]
I’ll try to get you on the right way. But you’ll have to try and update it yourself to suit your needs. Below code could be your index page. <?php if(isset($_POST[‘submit’])) { $page = $_POST[‘page’]; } else { $page=”home”; } ?> <form method=”post” action=”<?php echo $_SERVER[‘PHP_SELF’]; ?>”> <select name=”page”> <option value=”home”>Home</option> <option value=”something”>Some other page</option> … Read more