Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php echo showSectionHead($spTextTools['Generate Keyword Reports']); ?>
2
<form id='search_form'>
3
<table width="700px" border="0" cellspacing="0" cellpadding="0" class="search">
4
	<tr>
5
		<th><?php echo $spText['common']['Website']?>: </th>
6
		<td>
7
			<select name="website_id" style='width:170px;' id="website_id" onchange="doLoad('website_id', 'keywords.php', 'keyword_area', 'sec=keywordbox&keyNull=0')">
8
				<?php foreach($websiteList as $websiteInfo){?>
9
					<?php if($websiteInfo['id'] == $websiteId){?>
10
						<option value="<?php echo $websiteInfo['id']?>" selected><?php echo $websiteInfo['name']?></option>
11
					<?php }else{?>
12
						<option value="<?php echo $websiteInfo['id']?>"><?php echo $websiteInfo['name']?></option>
13
					<?php }?>
14
				<?php }?>
15
			</select>
16
		</td>
17
		<th><?php echo $spText['common']['Keyword']?>: </th>
18
		<td id="keyword_area" colspan='2'>
19
			<?php echo $this->render('keyword/keywordselectbox', 'ajax'); ?>
20
		</td>
21
	</tr>
22
	<tr>
23
		<th><?php echo $spText['common']['Search Engine']?>: </th>
24
		<td>
25
			<?php
26
				echo $this->render('searchengine/seselectbox', 'ajax');
27
			?>
28
		</td>
29
		<td><a href="javascript:void(0);" onclick="scriptDoLoadPost('generate-reports.php', 'search_form', 'subcontent')" class="actionbut"><?php echo $spText['button']['Proceed']?></a></td>
30
		<td>&nbsp;</td>
31
	</tr>
32
</table>
33
</form>
34
 
35
<div id='subcontent'>
36
	<p class='note'><?php echo $spTextTools['clickgeneratereports']?></p>
37
	<p class='note'><?php echo $spTextTools['note_report_generation']?></p>
38
</div>