-
Notifications
You must be signed in to change notification settings - Fork 0
/
getPremium.php
30 lines (27 loc) · 1.02 KB
/
getPremium.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
<?php
include("includes/includedFiles.php");
if($_SESSION['premiumValidity'] == true) {
echo "<div id='getPremium-modal'>
<h2>🌠 SyncPhonic Premium</h2>
<h3>Subscription Status :You have ".floor($_SESSION['premiumDaysLeft'])." days remaining.</h3>
<span>Incase you want to renew your subscription ,contact at +91-1234567890.</span>
</div";
}
else {
echo "<div id='getPremium-modal'>
<h2>🌠 SyncPhonic Premium</h2>
<h3>Get great music, right now.</h3>
<h3>Get SyncPhonic Premium Now!</h3>
<ul>
<li>Listen & Download loads of songs for free.</li>
<li>Get lyrics of your favourite songs to sing along!!</li>
<li>Discover music you'll fall in love with</li>
<li>Create your own playlists</li>
<li>Follow artists to keep up to date</li>
<li>NEW theme based visuals!! Coz music feels great with visuals. </li>
<li>Premium plans starting from ₹999 only.. Hurry..</li>
</ul>
<span>Contact at +91-1234567890 to avail premium.</span>
</div>";
}
?>