php - the nested while loop do not work, instead it displays unexpected '}' -
i used nested while loop retrieving data 2 different tables in sql using php browser displays unexpected '}'. tried setting nested while loop comment, executes in browser fine. checked every "}" , ";" ," " ", , "'", because think problem, don't see wrong code. can me please. thank you.
<?php include '../connect.php'; $sql=mysql_query("select * subscribers order name"); while($row=mysql_fetch_array($sql)) { ?> <body> <div id="page-wrap"> <textarea id="header">sariaya cable network</textarea> <div id="identity"> <textarea id="address">name: <?php echo $row['name']; $name = $row['name']; ?> street: <?php echo $row['street']; ?> brgy/sitio/subd: <?php echo $row['brgy/sitio/subd']; ?> </textarea> <div id="logo"> <div id="logoctr"> <a href="javascript:;" id="change-logo" title="change logo">change logo</a> <a href="javascript:;" id="save-logo" title="save changes">save</a> | <a href="javascript:;" id="delete-logo" title="delete logo">delete logo</a> <a href="javascript:;" id="cancel-logo" title="cancel changes">cancel</a> </div> <div id="logohelp"> <input id="imageloc" type="text" size="50" value="" /><br /> (max width: 540px, max height: 100px) </div> <img id="image" src="images\logo.png" alt="logo" style="height:7vw; width:7vw;" /> </div> </div> <div style="clear:both"></div> <div id="customer"> <textarea id="customer-title">billing of <?php echo date('f y'); ?></textarea> <table id="meta"> <tr> <td class="meta-head">account #</td> <td><textarea><?php echo $row['account_no.']; ?></textarea></td> </tr> <tr> <td class="meta-head">date of billing</td> <td><textarea id="date"><?php echo date('f d y'); ?></textarea></td> </tr> <tr> <td class="meta-head">amount due</td> <td><div class="due"></div></td> </tr> </table> </div> <table id="items"> <tr> <th>date</th> <th>monthly</th> <th>installation</th> <th>transfer</th> <th>reconnection</th> <th>extension</th> <th>misc. fee</th> </tr> <? $sqlbill=mysql_query("select * billing name='$name'"); while($subrow=mysql_fetch_array($sqlbill)){ ?> <tr class="item-row"> <td class="item-name"><div class="delete-wpr"><textarea> <?php echo $subrow['date']; ?></textarea><a class="delete" href="javascript:;" title="remove row">x</a></div></td> <td class="description"><textarea> <?php echo $subrow['monthly']; ?></textarea></td> <td><textarea class="cost"><?php echo $subrow['installation']; ?></textarea></td> <td><textarea class="qty"><?php echo $subrow['reconnection']; ?></textarea></td> <td><span class="price"><?php echo $subrow['transfer']; ?></span></td> <td><?php echo $subrow['extension']; ?></td> <td><?php echo $subrow['misc']; ?></td> </tr> <tr id="hiderow"> <td colspan="7"><a id="addrow" href="javascript:;" title="add row">add row</a></td> </tr> <tr> <td colspan="3" class="blank"> </td> <td colspan="3" class="total-line">subtotal</td> <td class="total-value"><div id="subtotal"></div></td> </tr> <tr> <td colspan="3" class="blank"> </td> <td colspan="3" class="total-line">total</td> <td class="total-value"><div id="total"></div></td> </tr> <tr> <td colspan="3" class="blank"> </td> <td colspan="3" class="total-line">amount paid</td> <td class="total-value"><textarea id="paid">$0.00</textarea></td> </tr> <tr> <td colspan="3" class="blank"> </td> <td colspan="3" class="total-line balance">balance due</td> <td class="total-value balance"><div class="due"></div></td> </tr> </table> <div id="terms"> <h5>terms</h5> <textarea>net 30 days. cutting of service made on unpaid balances after 30 days.</textarea> </div> </div> </body> <?php }//open of second php }//close of while mysql_close($local); mysql_close($network); ?>
<? // add here <?php $sqlbill=mysql_query("select * billing name='$name'"); while($subrow=mysql_fetch_array($sqlbill)){ ?>
here can add php in opening.
remove semicolons after } @ closing loops
</table> <div id="terms"> <h5>terms</h5> <textarea>net 30 days. cutting of service made on unpaid balances after 30 days.</textarea> </div> </div>
this code part should after end of first while loop. and
</body>should @ end.
Comments
Post a Comment