-
Notifications
You must be signed in to change notification settings - Fork 0
/
course_ncrt_solution_biology_11.php
87 lines (73 loc) · 2.71 KB
/
course_ncrt_solution_biology_11.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
include('includes/connect.php');
include('includes/header.php');
?>
<div class="post_section clearfix">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-8 post_left pull-right">
<div class="courses_right_inner padding-border-left">
<div class="courses">
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>CHAPTER</th>
<th>CHAPTER NAME</th>
<th>CHAPTER PDF</th>
</tr>
</thead>
<tbody>
<tr class="option">
<td></td>
<td> </td>
<td> </td>
</tr>
<?php
$querry="select * from solution_bio where chapter_subject = 'Biology' && chapter_class = '11' ORDER BY chapter_no ASC";
$sql=mysqli_query($con,$querry);
while($row=mysqli_fetch_assoc($sql))
{?>
<tr>
<td><b><?php echo $row['chapter_no']; ?>.</b></td>
<td><h3><?php echo $row['chapter_name']; ?></h3></td>
<td>
<ul>
<li class='active'>
<a href='books/solution_bio_chapter_pdf/<?php echo $row['chapter_pdf']; ?>'>Download Link</a>
</li>
</ul>
</td>
</tr>
<?php
}
?>
</tbody>
</table>
</div><!--End courses-->
</div><!--end post left section-->
</div><!--end post_left-->
<div class="col-xs-12 col-sm-4 post_right pull-left">
<div class="post_right_inner">
<?php
$query="select * from ncrt_solution where book_subject = 'Biology' && book_class = '11'";
$ssql=mysqli_query($con,$query);
$srow=mysqli_fetch_assoc($ssql);
//echo $row['book_class']; ?>
<div class="related_post_sec">
<div class="list_block">
<div class="formTitle news">
<h3 class="extraPadding"><?php echo $srow['book_subject']; ?></h3>
<div class="getImage clearfix">
<img alt="" src="books/solution_image/<?php echo $srow['book_image']; ?>" />
</div><!-- getImage -->
<a href="books/solution_pdf/<?php echo $srow['book_pdf']; ?>"><button class="btn btn-default btn-block commonBtn">Download Now</button></a>
</div>
</div>
<!-- formArea -->
</div><!--end related_post_sec-->
</div><!--end post right inner-->
</div><!--end post_right-->
</div>
</div>
</div>
<?php include('includes/footer.php');?>