This repository has been archived by the owner on May 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
productdetails.php
65 lines (65 loc) · 2.08 KB
/
productdetails.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
<?php
include("inner.tpl");
function ShowContent($title)
{
?>
<div id="content_area">
<table width="99%" border="0" cellpadding="5" cellspacing="0" class="ContentBold">
<tr>
<td align="left" valign="middle" > </td>
<td align="left" valign="middle"> </td>
</tr>
<?php
$id = $_GET['id'];
$rwerq=1;
$qry=mysql_query("select * from pdoductdescription ");
while($qrys=mysql_fetch_array($qry))
{
$id=$qrys['id'];
$name=$qrys['name'];
$description=$qrys['description'];
$more=$qrys['more'];
?>
<tr>
<td width="22" align="left" valign="middle" class="boldOrange"><?php echo $rwerq; ?></td>
<td width="489" align="left" valign="middle"><a href="productdetails-more.php?id=<?php echo $id; ?>" class="redlink"><?php echo $name; ?></a></td>
</tr>
<tr>
<td align="left" valign="middle" > </td>
<td align="left" valign="middle"><div align="justify">
<?php echo nl2br(substr ($description,0,200)); ?>
... </div></td>
</tr>
<tr>
<td align="left" valign="middle" > </td>
<td align="left" valign="middle"> </td>
</tr>
<?php $rwerq++; } ?>
<tr>
<td align="left" valign="middle" > </td>
<td align="left" valign="middle"> </td>
</tr>
<tr>
<td align="left" valign="middle" > </td>
<td align="left" valign="middle"> </td>
</tr>
</table>
</div>
<?php
}
function getTitle()
{
return "Products | Reality Opportunity Club";
}
function showMeta()
{
$qry=mysql_query("select name from pdoductdescription ");
while($qrys=mysql_fetch_array($qry))
{
$name .=$qrys['name'].', ';
}
$meta = '<meta name="description" content="To reach out the horizon of a customer controlled market, where exploitation by unwanted middlemen and misdirecting advertisements are avoided or curbed. The customers get bespoke products and the Member-Distributors get their due benefits for linking ROC products."/>
<meta name="keywords" content="Products, Reality Opportunity Club, '.$name.' "/>';
return $meta;
}
?>