Jump to content

Warning: mysql_fetch_row() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\Exer10\prtSect.php on line 20


roanic

Recommended Posts

<?php

include('Connect.php');

$query ="SELECT * From Section order by sectCode ASC";

$result = mysql_query($query);

mysql_close($con);

$ctr = 0;

echo"

<body>

<TABLE valign = top align = center border = 0 width =85% cellpadding = 2

cellspacing = 0 bgcolor = aliceblue>

<tr><th colspan = 5 align = center>List of Classes

<tr><td colspan =5><hr>

<tr><th bgcolor = white align = left>

<th bgcolor = white align = center><font color =black>Section

<th bgcolor = white align = center><font color =black>Subject Code

<th bgcolor = white align = center><font color = black>Subject Description

<th bgcolor = white align = center><font color = black>Time/Day

<tr><td colspan =5><hr>";

$ctr = 1;

while ($rec = mysql_fetch_row($result))

{

echo"

<tr>

<td align = center>$ctr

<td>$rec[1]

<td>$rec[2]

<td>$rec[3]

<td>$rec[4]

</tr>";

$ctr++;

}

$ctr;

echo "<tr><td colspan=5><hr>Total no. of SectionsPrinter: $ctr

<tr><td colspan=5><hr>

</table>

</body>";

 

 

?>
Edited by roanic
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.