unknown semi colon

unknown semi colon

narutimateumnarutimateum Posts: 12Questions: 0Answers: 0
edited June 2011 in General
there is this unknown semi colon show up on top my table proportionate to the number of row i have....what is that??how d o i get rid of that?

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Can you give us a link please? We are going to need a lot more information than that if we are to have any chance of helping.

    Allan
  • narutimateumnarutimateum Posts: 12Questions: 0Answers: 0
    its not online..still in my localhost..
    [code]



    Bil
    Nombor IC
    Nama
    Jabatan
    Jawatan
    Paparan
    Buang






    <?php
    $sQuery = "
    SELECT PEN_ID,PEN_NOMBRKP,PEN_NAME,PEN_KODJABATAN,ptj_respDesc,PEN_KODJAWATAN,jwt_ketpenu FROM adu_utiliti.agh_pengguna
    LEFT JOIN ekursus_utiliti.ptj ON PEN_KODJABATAN=ptj_bil
    LEFT JOIN ekursus_utiliti.glo_jwtnkod ON PEN_KODJAWATAN=jwt_kodjwtn
    WHERE PEN_KUMPID='2'

    ";
    $rResult = mysql_query( $sQuery ) or die(mysql_error());
    while ( $aRow = mysql_fetch_array( $rResult ) )
    {
    echo '';
    echo '.';
    echo ''.$aRow['PEN_NOMBRKP'].'';
    echo ''.$aRow['PEN_NAME'].'';
    echo ''.$aRow['ptj_respDesc'].'';
    echo ''.$aRow['jwt_ketpenu'].'';
    ?>
    ;

    <?

    echo '';
    }
    ?>


    [/code]
  • narutimateumnarutimateum Posts: 12Questions: 0Answers: 0
    This is my table code...the generation of the semi colon is outside of ;;;;;;;;
  • narutimateumnarutimateum Posts: 12Questions: 0Answers: 0
    i have other page that use datatable and those page didnt have those semi colon..the semicolon came out of nowhere...
This discussion has been closed.