forked from elektropay/ewallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.htm
97 lines (88 loc) · 3.52 KB
/
faq.htm
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
88
89
90
91
92
93
94
95
96
97
<?
###############################################################################
# PROGRAM : EPAY ENTERPRISE #
# VERSION : 4.13 #
# AUTHOR : DMITRY PEREUDA #
# COMPANY : ALSTRASOFT #
# COPYRIGHTS : (C)2009 ALSTRASOFT. ALL RIGHTS RESERVED #
# COPYRIGHTS BY (C)2009 ALSTRASOFT. ALL RIGHTS RESERVDED #
# LICENSE KEY : C3FA-76A1-83A4-C2B4-AE1F-1D5A-14ED-1DCA #
###############################################################################
# THIS FILE IS PART OF EPAY SCRIPT - THE NEW UNIVERSAL PAYMENT GATEWAY #
# DEVELOPED BY ALSTRASOFT #
###############################################################################
# ALL SOURCE CODE, IMAGES, PROGRAMS, FILES INCLUDED IN THIS DISTRIBUTION #
# COPYRIGHTS BY (C)2009 ALSTRASOFT. ALL RIGHTS RESERVDED #
###############################################################################
# ANY REDISTRIBUTION WITHOUT PERMISSION OF ALSTRASOFT AND IS #
# STRICTLY FORBIDDEN #
###############################################################################
# COPYRIGHTS BY (C)2009 ALSTRASOFT. ALL RIGHTS RESERVDED #
###############################################################################
# COPYRIGHTS BY (C)2009 ALSTRASOFT. ALL RIGHTS RESERVDED #
###############################################################################
$data['PageName']='FAQ';
$data['PageFile']='faq';
###############################################################################
include('config.htm');
###############################################################################
$data['IsLogin']=true;
$data['IsSignup']=true;
###############################################################################
function getCatTitle($cat) {
$result=db_rows(
"SELECT * FROM dp_faq_cat_list WHERE id=$cat ORDER BY id"
);
return $result[0]['title'];
}
function FAQSearch($srch){
ob_start();
$query="SELECT COUNT(id) AS total FROM dp_faq_list WHERE (question REGEXP '$srch') OR (answer REGEXP '$srch')";
$result=mysql_query($query) or die ("Error in query: $query. " . mysql_error());
extract(mysql_fetch_array($result) );
$query="SELECT * FROM dp_faq_list WHERE (question REGEXP '$srch') OR (answer REGEXP '$srch') ORDER BY cat DESC";
$result=mysql_query($query) or die ("Error in query: $query. " . mysql_error());
if($total>1){
$dd="results";
}else{
$dd="result";
}
?>
<br>
<table border=0 cellpadding=0 cellspacing=0 width=100% align="center">
<tr valign="top">
<td valign="top">
<?
while($r1=mysql_fetch_object($result)){
if(!$r1->question) continue;
?>
<a name="<?=$r1->id?>"></a>
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td><h1><?=$r1->question?></h1></td>
<td align="right"> </td>
</tr>
<tr>
<td colspan=2>
<?=$r1->answer?>
</td>
</tr>
</table>
<br><br>
<?
$mycnt++;
}
?>
</td>
</tr>
</table>
<?=$total?> <?=$dd?> results found<br>
<?
$searchresults=ob_get_contents();
ob_end_clean();
return $searchresults;
}
###############################################################################
display();
###############################################################################
?>