vote up 0 vote down star

Hello,

I have a question: How go from one *.php file to another *.php ? In example if I have this in index.php

<?php 
 <form method="POST" action="second.php">
 <input type="button" name="GO">
 </form>
?>

and in another second.php:

  <?php
    if ($_POST['GO'])
         // HERE SHOULD BE SOME CODE LIKE INCLUDE OR SMTH TO GO TO index.php
  ?>

I have tried include('index.php'); , but it doesn't work at all. Any suggestions?

flag

2  
Why is your <form> wrapped in <?php tags ?>? – brianreavis Oct 11 at 20:18
1  
if ($_POST['GO']) should be if(!empty($_POST['GO'])) – thirsty93 Oct 11 at 20:21
1  
@thirsty93: or better if( isset($_POST['GO']) ) – erenon Oct 11 at 20:23
@erenon: or even better if (array_key_exists('GO', $_POST)) – Ivan Nevostruev Oct 11 at 20:30
1  
@Ivan: I don't see how this would be better: 1. It's longer than isset(...) 2. It is not as self-explanatory because it is not visually showing that 'GO' is a key of the $_POST-array - You have to carefully read the code to see that – Caffeine Oct 11 at 20:38
show 1 more comment

1 Answer

vote up 3 vote down check

Do you mean a redirect?

header('Location: index.php');
exit;
link|flag
For that to work you'll need to not have already started outputting data to the client, otherwise PHP will yell at you. – Dominic Rodger Oct 11 at 20:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.