This repository was archived by the owner on May 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathreadnews.php
More file actions
46 lines (42 loc) · 1.44 KB
/
Copy pathreadnews.php
File metadata and controls
46 lines (42 loc) · 1.44 KB
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
<?php
include("inner.tpl");
function ShowContent()
{
$id = $_GET['id'];
?>
<div id="content_area">
<table width="80%" border="0" align="center" cellpadding="2" cellspacing="0">
<?php
$jdfj=mysql_query("select captn,descr from newsss where id = '$id' ");
while($sdfsdfsa=mysql_fetch_array($jdfj))
{
$captn=$sdfsdfsa['captn'];
$descr=$sdfsdfsa['descr'];
?>
<tr>
<td colspan="2"><h2><?php echo $captn; ?></h2></td>
</tr>
<tr>
<td width="4%"> </td>
<td width="96%"><?php echo $descr; ?></td>
</tr>
<?php } ?>
<tr>
<td> </td>
<td align="right"><a href="index.php"><img src="users/img/first.png" alt="HOME" width="16" height="16" border="0" /></a></td>
</tr>
</table>
</div>
<?php
}
function getTitle()
{
return "News | Reality Opportunity Club";
}
function showMeta()
{
$meta = '<meta name="description" content="The best part of this concept, is that you do not have to do anything different from what you have been doing till now."/>
<meta name="keywords" content="Reality Opportunity Club, ROC, member distributer, Level binary, opportunity to earn more, ROC Real Noni, Online Business, United Customer\'s Programme, Kottayam Club, Noni Juice, Turbo Convection Oven, Ozone Disinfector, Olive VG300, Olive VG3201, Olive Msngr, Primary Income, Product Marketing Kottayam "/>';
return $meta;
}
?>