· 9 years ago · Sep 11, 2016, 02:26 AM
1<?php if($thisfile == 'index') { ?>
2 <ul id="pagination" style="list-style: none;">
3 <?php include($basepath.'/includes/inc.pagination.php'); ?>
4 </ul>
5 <?php } ?>
6
7 </div>
8 <!-- end left -->
9
10 <div id="right_contener">
11 <div id="search">
12 <form method="post" action='<?php echo $basehttp; ?>/searchgate.php'>
13 <input type='hidden' name='mode' value='search' />
14 <input id="search_in" type="text" name="q" size="26" value="Search TheHabibShow.com" onclick="this.value=''" />
15 <input id="search_submit" type="image" src="<?php echo $basehttp; ?>/gfx/go.gif" value="SEARCH" />
16 </form>
17 </div> <!-- /search -->
18
19 <div class="row" style="margin-top: 15px;">
20 <a href="<?php echo $basehttp ;?>/action.php?action=rss" class="social-networks" id="s-n-rss" target="_blank"></a>
21 <a href="http://www.facebook.com/pages/Thehabibshow/491969460870567" class="social-networks" id="s-n-facebook" target="_blank"></a>
22 <a href="mailto:thehabibshow at gmail.com replace at with @"" class="social-networks" id="s-n-email"></a>
23 <a href="http://www.twitter.com/thehabibshows" class="social-networks" id="s-n-twitter" target="_blank"></a>
24 <a href="javascript:bookmark('TheHabibShow', 'http://www.thehabibshow.com/tour/');" class="social-networks" id="s-n-bookmark" target="_self"></a>
25 <a href="http://www.addthis.com/bookmark.php?v=250&pubid=ra-4de482b847b53324" class="social-networks" id="s-n-addthis" target="_blank"></a>
26 </div> <!-- social networks -->
27
28 <div class="right">
29 <img src="<?php echo $basehttp; ?>/gfx/contact.gif" width="233" height="45" alt="Contact Habib" />
30 <div id="contact">
31 <span style="color: #fd9e42;">For Business Related or Females wanting to get with Habib.</span> Leave me a message at <span style="color: #fcf16b;">(312)725-3718</span> or send me a text message. Ill"respond if its makes sense.
32 </div>
33 </div> <!-- /contact habib -->
34
35 <div class="right">
36 <img src="<?php echo $basehttp; ?>/gfx/mailing.gif" width="233" height="47" alt="Mailing List" />
37 <div class="mailing">
38 <div class="dv-center">
39 <strong>Fill in the form below to join TheHabibShow.com mailling list!</strong>
40 </div>
41 <form name="mailing-list" id="mailing-list" method="post" action="">
42 <table width="210" align="center" style="border-collapse:collapse; margin-top: 20px;" border="0">
43 <tr>
44 <td>Email Address</td>
45 </tr>
46 <tr>
47 <td><input type="text" name="ml-email" class="validate-email" required="required" /></td>
48 </tr>
49 <tr>
50 <td><img src="<?php echo $basehttp; ?>/captcha_ml.php" id="ml-captcha" width="213" height="70" alt="" /></td>
51 </tr>
52 <tr>
53 <td>Enter code above to verify</td>
54 </tr>
55 <tr>
56 <td><input type="text" name="ml-captcha" id="ml-captcha-code" maxlength="6" required="required" /></td>
57 </tr>
58 <tr>
59 <td class="ml-errormessage">Please correct the highlighted fields.</td>
60 <td class="ml-successmessage">Congradulations! You have sucessfully signed up to our Mailing List.</td>
61 <td class="ml-sendingmessage">Please wait, sending...</td>
62 </tr>
63 <tr>
64 <td align="center"><input type="submit" name="ml-submit" value="submit" id="ml-submit" class="frm-bttn" /></td>
65 </tr>
66 </table>
67 </form>
68 </div>
69 </div> <!-- /mailing -->
70
71 <div class="right">
72 <img src="<?php echo $basehttp; ?>/gfx/latest_updates.gif" width="233" height="47" alt="Latest Updates" />
73 <div class="updates">
74 <?php
75 $result = mysql_query("SELECT * FROM news ORDER BY datefrom DESC, record_num DESC");
76 while($row = mysql_fetch_array($result)) {
77 ?>
78 <div class="update">
79 <table width="100%" border="0">
80 <tr>
81 <td valign="top"><?php echo $row[image]; ?></td>
82 <td valign="top" style="padding-left: 10px;"><?php echo $row[message]; ?></td>
83 </tr>
84 </table>
85 </div>
86 <?php } ?>
87 </div>
88 </div> <!-- /updates -->
89
90 <div class="right">
91 <img src="<?php echo $basehttp; ?>/gfx/categories.gif" width="233" height="45" alt="Habib's Categories" />
92 <div class="categories">
93 <?php
94 $result = mysql_query("SELECT * FROM niches WHERE parent = 0");
95 while($row = mysql_fetch_array($result)) {
96 echo '<a class="cat_main" href="'.$basehttp.'/channels/'.$row[record_num].'/'.$row[name].'/page1.html">'.$row[name].'</a>';
97 $rresult = mysql_query("SELECT * FROM niches WHERE parent = '$row[record_num]' ORDER BY name ASC");
98 while($rrow = mysql_fetch_array($rresult)) {
99 echo '<a class="cat_sub" href="'.$basehttp.'/channels/'.$rrow[record_num].'/'.$rrow[name].'/page1.html">- '.$rrow[name].'</a>';
100 }
101 }
102 ?>
103 </div>
104 </div> <!-- /categories -->
105
106 <div class="right">
107 <img src="<?php echo $basehttp; ?>/gfx/shout.gif" width="233" height="46" alt="Shout Outs" />
108 <div class="updates">
109 <?php
110 $result = mysql_query("SELECT * FROM shout_outs WHERE status = 'approved' ORDER BY record_num DESC");
111 while($row = mysql_fetch_array($result)) {
112 ?>
113 <div class="update" style="width: 100%; display: block;">
114 <span><?php echo $row[name]; ?>:</span><p style='text-decoration: none;'> <?php echo $row[message]; ?></p>
115 </div>
116 <?php } ?>
117 </div>
118 <div class="mailing">
119 <form name="shout-outs" id="shout-outs" method="post" action="">
120 <table width="210" align="center" style="border-collapse:collapse; margin-top:20px;" border="0">
121 <tr>
122 <td>Your Name</td>
123 </tr>
124 <tr>
125 <td><input type="text" name="so-name" required="required" /></td>
126 </tr>
127 <tr>
128 <td>Enter Message</td>
129 </tr>
130 <tr>
131 <td><textarea name="so-message" rows="3" cols="5" required="required"></textarea></td>
132 </tr>
133 <tr>
134 <td><img src="<?php echo $basehttp; ?>/captcha_so.php" width="213" height="70" alt="" /></td>
135 </tr>
136 <tr>
137 <td>Enter code above to verify</td>
138 </tr>
139 <tr>
140 <td><input type="text" name="so-captcha" id="so-captcha-code" maxlength="6" required="required" /></td>
141 </tr>
142 <tr>
143 <td class="so-errormessage">Please correct the highlighted fields.</td>
144 <td class="so-successmessage">Success. Your Message has been Delivered.</td>
145 <td class="so-sendingmessage">Please wait, sending...</td>
146 </tr>
147 <tr>
148 <td align="center"><input type="submit" name="so-submit" value="submit message" id="so-submit" class="frm-bttn" /></td>
149 </tr>
150 </table>
151 </form>
152 </div>
153 </div> <!-- /shout outs -->
154
155 <div class="right">
156 <img src="<?php echo $basehttp; ?>/gfx/reviews.gif" width="233" height="45" alt="Reviews" />
157 <?php
158 $s_r_result = mysql_query("SELECT * FROM sidebar_reviews ORDER BY record_num ASC");
159 while($s_r_row = mysql_fetch_array($s_r_result)) {
160 ?>
161 <?php
162 $check_review_img = $misc_path . '/review-' . $s_r_row[record_num] . '.jpg';
163 if(file_exists($check_review_img)) {
164 $review_img = $misc_url . '/review-' . $s_r_row[record_num] . '.jpg';
165 ?>
166 <div class="review">
167 <a href="<? echo $s_r_row[url]; ?>" target="_blank"><img src="<? echo $review_img; ?>" width="120" height="60" alt="" /></a>
168 </div>
169 <?php } else { ?>
170 <div class="categories">
171 <a class="cat_sub" href="<? echo $s_r_row[url]; ?>" target="_blank"><? echo $s_r_row[title]; ?></a>
172 </div>
173 <?php } ?>
174 <?php } ?>
175 </div> <!-- /reviews -->
176
177 <div class="right">
178 <img src="<?php echo $basehttp; ?>/gfx/recomended.gif" width="233" height="43" alt="Recommended" />
179 <div class="categories">
180 <?php
181 $r_s_result = mysql_query("SELECT * FROM sidebar_recommended_sites ORDER BY record_num ASC");
182 while($r_s_row = mysql_fetch_array($r_s_result)) {
183 ?>
184 <a class="cat_sub" href="<? echo $r_s_row[url]; ?>" target="_blank"><? echo $r_s_row[title]; ?></a>
185 <?php } ?>
186 </div>
187 </div> <!-- /recommended -->
188
189 <div class="right">
190 <div class="review">
191 <?php
192 $b_result = mysql_query("SELECT * FROM sidebar_banners WHERE status = 'enabled' ORDER BY RAND() LIMIT 0,1");
193 $b_row = mysql_fetch_array($b_result);
194 echo $b_row[html_code];
195 ?>
196 </div>
197 </div> <!-- /banners -->
198 </div> <!-- /right contener -->
199 </div>
200
201 <div id="footer">
202 © 2005 TheHabibShow.com All Right Reserved - All models are at least 18 years of age<br/>
203 <span>
204 <a href='http://thehabibshow.com/tour/2257.php'>18 U.S.C. 2257 Record-Keeping Requirements Compliance Statement</a> -
205 <a href='/tour/privacy.php'>Privacy Policy</a> -
206 <a href='http://thehabibshow.com/tour/affiliate.php'>Webmasters</a> -
207 <a href='http://thehabibshow.com/tour/contact.php'>Contact Us</a>
208
209 </span>
210 </div>
211 </div>
212 <script type="text/javascript" src="//s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4de482b847b53324"></script>
213 <script type="text/javascript">
214 (function() {
215 var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
216 po.src = '//apis.google.com/js/plusone.js';
217 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
218 })();
219 </script>
220 <script type="text/javascript">
221 var _gaq = _gaq || [];
222 _gaq.push(['_setAccount', 'UA-5838542-3']);
223 _gaq.push(['_trackPageview']);
224 (function() {
225 var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
226 ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
227 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
228 })();
229 </script>
230</body>
231</html>
232<?php ob_end_flush(); ?>