How can I go from one *.php file to another *.php file? Örneğin, ben bu in'i varsa index.php
:
<?php
<form method="POST" action="second.php">
<input type="button" name="GO">
</form>
?>
ve bu second.php
,
<?php
if ($_POST['GO'])
// HERE SHOULD BE CODE LIKE "INCLUDE" OR SOMETHING TO GO TO index.php
?>
I include('index.php');
denedim, ama hiç çalışmıyor. Herhangi bir öneriniz?