为什么我的页面刷新而不进入其他页面

时间:2014-05-16 18:50:57

标签: php html forms post input

Timesheet.php,autocomplete.php和insert.php。

我的autocomplete.php包含在我的timesheet.php和我的autocomplete.php中。我有一个按钮完全在哪里正常插入insert.php。

但是我不知道为什么当我点击完成时刷新了我的页面!

这里是我的时间表的一些代码。

<h1>Feuille de temps du Groupe Ohméga inc.</h1>
<div id="pic">
    <img src="ohm.png" width="100" height="85" align="left" hspace="6" vspace="6"/> 
</div>
</br>
        <div id="welcome">
        </br>
            <input value="recherche un numéro" type="button" name="search" id="search" onClick="window.open('datagrid.html','Fiche','toolbar=no,status=no,width=800 ,height=700,scrollbars=yes,location=center,resize=yes,menubar=yes')">

                </br>
            <form method="post" action="choixsheet.php">
                <input type="submit" name="disconnect"  value="Se déconnecté" id="disconnect" />

                <?php

            $_SESSION['usrUserName'] = $usrUserName  ;

            $_SESSION['usrPassword'] = $usrPassword ;
                ?>
            </form>

<form>
<?php 
            $usrUserName = $_SESSION['usrUserName']; ?>
            Bienvenue:  <?php echo$usrUserName;  '\t'   ?>

                </br>
            Semaine du : 
            <input  align="center" type="text" name="timesheetdate" id="timesheetdate" value=<?php  echo $date ?> disabled>
            </br>
            </br>
        </div>

        <?php include "autocomplete.php" ;  ?>

    <!--creation de la case commentaire. -->

</form>
    </div>  

这是我的自动填充功能,我切了一些部分导致超过3000行代码

<?php
// Connect to the DB
    require("dbconn.php");
    include("Log.php"); 
//chercher pour la colone tache 
    $pdo = new PDO('mysql:host=localhost;dbname=ohmega', 'Something', '', 
    array( PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"));
    #Set Error Mode to ERRMODE_EXCEPTION.
    $pdo->setAttribute( PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);  
    $stmt = $pdo->prepare('Select * from taches ');
    $stmt->execute();
?>

<!-- Insérer donner et envoyer dans la page insert.php pour la BD. -->
<form action ='insert.php' method="post"  > 
<table>

//某些部分被剪切

</br>
    <div class="header">
        Commentaires spéciaux : 
        </br>
        <textarea  id="timComments" name="timComments"> </textarea>
        </br>
        <input type="submit" name="submit_val"  value="Terminé" id="end" />
    </div>



</form>

所以,当我点击终点(完成)不会插入buyt只是刷新??

0 个答案:

没有答案