-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadvertise.php
More file actions
161 lines (140 loc) · 5.01 KB
/
advertise.php
File metadata and controls
161 lines (140 loc) · 5.01 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<?php
include (str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/config.php');
?>
<!DOCTYPE html>
<html>
<head>
<title>Productlists | Advertise</title>
<link rel=stylesheet href=https://listro.co.za/style.css />
<link rel=stylesheet href=https://<?php echo $HOME_; ?>/index_style.css />
<?php
include (str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/p_styles.php');
?>
<meta name="viewport" content="width=device-width" />
<meta name="description" content="Technology Firm - working towards solutions to free the youth. We offer a system for members to sell products through a professional online company and build their brand. The system is suitable for businesses seeking to achieve remote income flow and lower operating costs." />
<meta name="keywords" content="shares,writer,programmer,engineer,donate,enquiry,productlists,support,contact,south africa,pietermaritzburg,kzn,online shopping,technology,file sharing,music,documents,content,member,company,directory,column,products" />
<meta name="autor" content="Mongezi Mafunda" />
</head>
<body>
<?php
if(ISSET($_POST['pp'])){
if($_POST['pp']){
echo '<script>alert("Success");</script>';
}else{
echo '<script>alert("Failure");</script>';
}
}
include (str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/p_scripts.php');
?>
<div class=p_cont >
<?php include str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/header_3.php'; ?>
<div class="body row" >
<div class="col-sm-3" >
<div id=left_pane class="left_pane" >
<div id=left_pane_1 >
<?php include str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/services/sell/products/feature/group_four.php'; ?>
</div>
<div id=left_pane_2 style="display:none;" >
<?php include str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/feature/relationship.php'; ?>
</div>
</div>
</div>
<div class="content col-sm-6" >
<a name=main ></a>
<div id="main" class=main >
<p>
<h3>Di-On-Marketing</h3>
We are improving the business image of Newcastle by managing top pipeline
to showcase our product and services.<br><br>
The pipeline is physically based in Newcastle where the print out newsletter is
issued. We also have reach online through Facebook classified groups. The
estimate people that can be reached are 150k.<br><br>
The pipeline involves printing out locally then creating digital content that
corresponds in the form of video, posting it on YouTube and sharing on
Facebook.<br><br>
We also make use of online directories like Gumtree as well as banners on our
chain of websites.<br><br>
The pipeline is carried out every 3 days for the whole month.
</p>
<h4>Pricing Options <small>(Free graphic design)</small></h4>
<div class=row id=pricing_option >
<div class=col-sm-4 onclick="setPackage(this,150);" >
<div class=space >
<h5><strong>Basic</strong></h5>
<span style="color:green" >R150</span> (monthly)<br>
Newsletter Print(1)<br>
YouTube Video(1)<br>
Facebook groups(4)<br>
</div>
</div>
<div class=col-sm-4 onclick="setPackage(this,250);" >
<div class=space >
<h5><strong>Moderate</strong></h5>
<span style="color:green" >R250</span> (monthly)<br>
Newsletter Print(1)<br>
YouTube Video(1)<br>
Facebook groups(8)<br>
Online Directory(3)
</div>
</div>
<div class=col-sm-4 onclick="setPackage(this,350);" >
<div class=space >
<h5><strong>Professional</strong></h5>
<span style="color:green" >R350</span> (monthly)<br>
Newsletter Print(1)<br>
YouTube Video(1)<br>
Facebook groups(12)<br>
Online Directory(6)<br>
Website Banner (3)
</div>
</div>
</div>
<div style="height:50px;padding:10px;" >
<a href=# onclick=advertise(); class="btn btn-primary" style="float:right;" >Advertise</a>
</div>
<p>
<strong>enquire:</strong><br>
063 530 6336<br>
4 VALK Amajuba 2940
</p>
</div>
</div>
<div class="col-sm-3" >
</div>
</div>
<?php
include str_replace('\\','/',$_SERVER['DOCUMENT_ROOT']).'/footer_4.php';
?>
</div>
<script>
function setPackage(ele,price){
var ops = e('pricing_option').getElementsByTagName('div');
for(var a=0;a<ops.length;a++){
ops[a].className = ops[a].className.replace('block','');
}
ele.className+=' block';
e('amount_ff').value = price;
}
function advertise(){
if(e('amount_ff').value){
e('payment_ff').submit();
}else{
alert('Select Pricing Option');
}
}
</script>
<form action=https://www.payfast.co.za/eng/process method=post id=payment_ff class=invisible >
<input type=text name=merchant_id value=12647788 />
<input type=text name=merchant_key value=nliu1lbt07r75 />
<input type=text name=return_url value=https://www.productlists.co.za/advertise.php?pp=1 />
<input type=text name=cancel_url value=https://www.productlists.co.za/advertise.php?pp=0 />
<input type=text id=amount_ff name=amount />
<input type=text id=item_name name=item_name value="Advertise" />
<input type=text name=email_confirmation value="1" />
</form>
</body>
</html>
<?php
$conn->close();
?>