Subversion Repositories cheapmusic

Rev

Blame | Last modification | View Log | RSS feed

<?php echo showSectionHead($spTextSat['Search Engine Saturation Reports']); ?>
<form id='search_form'>
<table width="100%" class="search">
        <tr>
                <th><?php echo $spText['common']['Website']?>: </th>
                <td>
                        <select name="website_id" id="website_id" style='width:190px;' onchange="scriptDoLoadPost('saturationchecker.php', 'search_form', 'content', '&sec=reports')">
                                <?php foreach($websiteList as $websiteInfo){?>
                                        <?php if($websiteInfo['id'] == $websiteId){?>
                                                <option value="<?php echo $websiteInfo['id']?>" selected><?php echo $websiteInfo['name']?></option>
                                        <?php }else{?>
                                                <option value="<?php echo $websiteInfo['id']?>"><?php echo $websiteInfo['name']?></option>
                                        <?php }?>
                                <?php }?>
                        </select>
                </td>
                <th><?php echo $spText['common']['Period']?>:</th>
                <td>
                        <input type="text" value="<?php echo $fromTime?>" name="from_time"/> 
                        <input type="text" value="<?php echo $toTime?>" name="to_time"/>
                        <script type="text/javascript">
                        $(function() {
                                $( "input[name='from_time'], input[name='to_time']").datepicker({dateFormat: "yy-mm-dd"});
                        });
                        </script>
                </td>
                <td colspan="2"><a href="javascript:void(0);" onclick="scriptDoLoadPost('saturationchecker.php', 'search_form', 'content', '&sec=reports')" class="actionbut"><?php echo $spText['button']['Show Records']?></a></td>
        </tr>
</table>
</form>

<?php
        if(empty($websiteId)){
                ?>
                <p class='note error'><?php echo $spText['common']['No Records Found']?>!</p>
                <?php
                exit;
        } 
?>

<div id='subcontent'>
<table width="100%" class="list">
        <tr class="listHead">
                <td class="left"><?php echo $spText['common']['Date']?></td>
                <td>Google</td>
                <td class="right">Bing</td>
        </tr>
        <?php
        $colCount = 3; 
        if(count($list) > 0){
                $catCount = count($list);
                $i = 0;
                foreach($list as $listInfo){
                        
                        $class = ($i % 2) ? "blue_row" : "white_row";
            if($catCount == ($i + 1)){
                $leftBotClass = "tab_left_bot";
                $rightBotClass = "tab_right_bot";
            }else{
                $leftBotClass = "td_left_border td_br_right";
                $rightBotClass = "td_br_right";
            }            
                        ?>
                        <tr class="<?php echo $class?>">
                                <td class="<?php echo $leftBotClass?>"><?php echo $listInfo['result_date']; ?></td>
                                <td class='td_br_right' style='text-align:left;padding-left:40px;'><a href="<?php echo $directLinkList['google']?>" target="_blank"><?php echo $listInfo['google'].'</a> '. $listInfo['rank_diff_google']?></td>
                                <td class='<?php echo $rightBotClass?>' style='text-align:left;padding-left:40px;'><a href="<?php echo $directLinkList['msn']?>" target="_blank"><?php echo $listInfo['msn'].'</a> '. $listInfo['rank_diff_msn']?></td>
                        </tr>
                        <?php
                        $i++;
                }
        }else{
                echo showNoRecordsList($colCount-2);            
        } 
        ?>
        <tr class="listBot">
                <td class="left" colspan="<?php echo ($colCount-1)?>"></td>
                <td class="right"></td>
        </tr>
</table>
</div>