I can NOT submit the form

Posted by buri kuri on Stack Overflow See other posts from Stack Overflow or by buri kuri
Published on 2011-03-04T21:53:53Z Indexed on 2011/03/05 7:24 UTC
Read the original article Hit count: 101

Filed under:
|

Hey guys Im trying to develop an advance consumer website using php and I stuck somewhere while trying to get the data with submitting to another page. All I want to do is to get the checkbox values which are stored in an array and checked by user. I urgently need your help please here is the code:

$sql2="SELECT * FROM alinanfis WHERE alinanfis.fis_id='".$fis."'" ;
$resultFis=mysql_query($sql2);
if(mysql_num_rows($resultFis)>0)
{
    print "<form method='POST' action='deletionResult.php'>";
    print "<table>";
    print "<tr>";
    print "<th style='background: transparent;'></th>"; 
    print "<th>Fis No</th>";
    print "<th>isim</th>";
    print "<th>soyisim</th>";
    print "<th >Tarih</th>";
    print "<th>Fis Tipi</th>";
    print "<th>Nerede</th>";
    print "<th>Litre</th>";
    print "<th>Tutar</th>";
    print "</tr>";

    while($rowAlinan=mysql_fetch_array($resultFis))
    {
        $sqlFisTipi="SELECT * FROM atype WHERE a_id='".$rowAlinan['a_id']."'" ;

        $resultFisTipi=mysql_query($sqlFisTipi);
        $rowFisTipi=mysql_fetch_array($resultFisTipi);

        $sqlNerede="SELECT * FROM isyeri WHERE i_id='".$rowAlinan['nerde']."'" ;

        $resultNerede=mysql_query($sqlNerede);
        $rowNerede=mysql_fetch_array($resultNerede);

        $sqlMID="SELECT * FROM musteri WHERE m_id='".$rowAlinan['m_id']."'" ;

        $resultMID1=mysql_query($sqlMID);
        $rowMID1=mysql_fetch_array($resultMID1);

        print "<tr>";

        print "<td><input name='checkBox[]' type='checkbox' value='".$rowAlinan['fis_id']."' />

        php</td>";   

        print "<td>".$rowAlinan['fis_id']."</td>";
        print "<td>".$rowMID1['m_name']."</td>";
        print "<td>".$rowMID1['m_lastName']."</td>";
        print "<td>".$rowAlinan['alinan_tarih']."</td>";
        print "<td>".$rowFisTipi['a_name']."</td>";
        print "<td>".$rowNerede['i_name']."</td>";
        print "<td>".$rowAlinan['litre']."</td>";
        print "<td>".$rowAlinan['tutar']."</td>";
        print "</tr>";
    }

    print '<div class="form_settings">';
    print "<input class='submit' type='submit' name= 'send' value='Send'>";
   /
    print '</div>';
    print "</table>";
    print "</form>";
}//end of if(num_rows>0)

else
    echo '*no such receipt found!!';

mysql_close($con);

© Stack Overflow or respective owner

Related posts about php

Related posts about mysql