EVOLUTION-MANAGER
Edit File: index.php
<?php require_once('header.php'); require_once('home-nav.php'); ?> <div class="container-fluid" id="homeBanner"> <div class="row-fluid"> <?php if(!isUserLoggedIn()) { ?> <div class="span12 well well-small"> <!--<a id="homebannerImage" href="<?php echo $baseurl ?>register" title="Register and call your girl friends"><img src="<?php echo $baseurl ?>img/phone-girls.png" alt="phone girl friends" title="Your phone girl friends - Talk to them now"/></a>--> <div> <!--<h1>Sexy Indian Girls Are Waiting to Have Sex Chat With You</h1> <p>Welcome to the best and cheapest sex chat site where you can have live webcam sex or phone sex with hot and sexy girls in India. All our girls are verified to give you guarantee of their hottest service and make you safe from scams. Talk to these sexy girls without any limits, no extra charge and no phone required.</p> <p>To use this service you must be of 18 years of age, or the legal age in your country or older. </p>--> <a class="btn btn-large btn-success" href="<?php echo $baseurl ?>login" type="button">Login and Call</a> <a class="btn btn-large btn-danger" type="button" href="<?php echo $baseurl ?>register">Create a Free Account</a> </div> </div> </div> <?php } else { ?> <div class="alert alert-yellow">Welcome <?php echo $loggedInUser->displayname; ?>, select a host below to talk to.</div> </div> <?php } ?> </div> <div id="mostPopularItems" class="row-fluid"> <ul class="thumbnails"> <? if(isUserLoggedIn()) $userData = fetchAllOtherHosts($loggedInUser->username); else $userData = fetchAllOtherHosts(); //if(!$userData){ if(isUserLoggedIn()) $userData = fetchAllUsers($loggedInUser->username); else $userData = fetchAllUsers();} foreach ($userData as $v1){ $activDiff=time()-$v1['lastActiv']; if($activDiff<1800 && $activDiff>0) $isOnlineActive=1; else $isOnlineActive=0;?> <li> <div class="thumbnail"> <div class="hostImg"> <a href="<? echo $baseurl.'host/'.$v1['user_name']?>"><img src="<?php echo $baseurl ?>img/users/<? echo $v1['img']?>" alt="<? echo $v1['user_name']?>"></a> <a href="<?php if(isUserLoggedIn()){ if($v1['online'] && $isOnlineActive) echo $baseurl.'host/'.$v1['user_name']; else echo $baseurl.'schedule/'.$v1['user_name']; } else echo $baseurl.'login' ?>" <?php if($v1['online'] && $isOnlineActive) echo 'class="btn btn-121 btn-block actionButton">Call me now'; else echo 'class="btn btn-warning btn-block actionButton">Schedule a Call' ?></a> </div> <div class="vendor-details"> <a href="<? echo $baseurl.'host/'.$v1['user_name']?>"><h3><? echo $v1['display_name']?></h3></a> <span>Talk to me about:</span> <ul> <li>What you like to talk about</li> <li>Your personal issues</li> <li>Your technical problems and solutions for those in minutes</li> <li>Friendship and romance</li> </ul> <p><span>Availability:</span> From 9AM to 9PM </p> <p><span>I speak:</span> English, Hindi </p> </div> <p class="hostCamOptions"><img src="<?php echo $baseurl ?>img/phoneAvailable.png" alt="available for phone" title="Does phone"/> <?php if($v1['usertype']==2) {?> <img src="<?php echo $baseurl ?>img/camAvailable.png" alt="available for cam" title="Does cam"/> <?php } ?></p> </div> </li> <?php } ?> </ul> <!--<div class="pagination"> <ul> <li><a href="#">Prev</a></li> <li><a href="#">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">4</a></li> <li><a href="#">5</a></li> <li><a href="#">Next</a></li> </ul> </div>--> </div> </div><!--/span--></div><!--/row--> <?php require_once('footer.php'); ?>