DataTables warning: table id=example - Requested unknown parameter '2'

DataTables warning: table id=example - Requested unknown parameter '2'

brittalpanabrittalpana Posts: 8Questions: 2Answers: 0
edited January 2015 in Free community support

Here is my code:

<?php $i = 0; while($row_for_PermanentAddress = mysql_fetch_array($query_for_PermanentAddress)){ $i++; $MemberName=$row_for_PermanentAddress ['MemberName']; $PermanentAddress =$row_for_PermanentAddress ['PermanentAddress']; $CellPhone=$row_for_PermanentAddress ['CellPhone']; if ($i % 3 == 1) { echo "<tr align='center'>"; } echo "".$MemberName. "" .$PermanentAddress."".$CellPhone.""; if ($i % 3 == 0) { echo ""; } } ?>
OGSB Member Parmanent Address
Parmanent Address Parmanent Address Parmanent Address

I got following error after run this code.

DataTables warning: table id=example - Requested unknown parameter '2' for row 676. For more information about this error, please see http://datatables.net/tn/4

Can you guys please help me where is the error?

Answers

  • brittalpanabrittalpana Posts: 8Questions: 2Answers: 0
    edited January 2015

    I am wondering why html table code is not showing above code.

    OGSB Member Parmanent Address
    Parmanent Address Parmanent Address Parmanent Address
This discussion has been closed.