-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sponsorship.php
executable file
·73 lines (59 loc) · 1.73 KB
/
Sponsorship.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
<?php
$Table = "data";
$sql = "select * from $Table where id = $refNo ";
$res = mysql_query($sql);
$rownumber=0;
while ( $row = mysql_fetch_array($res))
{
if($rownumber%2==0) $layout="RowEvenC";
else
{
$layout="RowOddC";
}
$rownumber++;
$item[0] = "";
$item[0] .= " <div class= $layout > <div class='bgRed'>" . $row['title'] ;
$item[0] .= $row['sub_title'] . "</div></br>" . $row['text'];
$item[0] .= "</div>";
// $item[0] .= " </div> ";
echo $item[0];
}
?>
<div class= RowOddC>
<br><b>For sponsorship information, please contact:</b>
</div>
<div class= RowEvenC>
<table class="table_class">
<tr><td><img src="Pictures/rkd1.jpg" height="90px" width="75px"></td>
<td valign="top">Professor Ravindra K Dhir OBE, Congress Chairman
<br> University of Dundee, UK / Trinity College Dublin, Ireland</td></tr>
<br>
<tr><td>Telephone:</td>
<td> +44 121 4278 108</td></tr>
<tr><td>Email:</td>
<td>[email protected]</td></tr>
</table>
</div>
<div class= RowOddC>
<br>
<b>For exhibition related matters, please contact:</b>
</div> <div class= RowEvenC>
<table class="table_class">
<tr><td><img src="Pictures/hsrai.jpg"/></td>
<td valign="top">Professor H S Rai, Congress Joint Secretary
<br>Department of Civil Engineering
<br>Guru Nanak Dev Engineering College
<br>Ludhiana – 141 006 (Punjab)
<br>
India</td></tr>
<br>
<tr><td>Telephone:</td>
<td>+91 161 2491 193 (O)</td></tr>
<tr><td></td>
<td>+91 98552 25007 (M)</td></tr>
<tr><td>Fax:</td>
<td>+91 161 5064 742, 2502 240 (by attention)</td></tr>
<tr><td>Email:</td>
<td>[email protected], [email protected]</td></tr>
</table>
</div>