Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<?php
2
echo showSectionHead($spTextTools['Quick Checker']);
3
$actFun = SP_DEMO ? "alertDemoMsg()" : "scriptDoLoadPost('$pageScriptPath', 'search_form', 'subcontent', '&sec=doQuickChecker')";
4
?>
5
<form id='search_form' onsubmit="<?php echo $actFun; ?>;return false;">
6
<table id="cust_tab">
7
	<tr class="form_head">
8
		<th width="30%"><?php echo $spTextTools['Quick Checker'];?></th>
9
		<th>&nbsp;</th>
10
	</tr>
11
	<tr class="form_data">
12
		<td><?php echo $spText['label']['Type']?>: </td>
13
		<td>
14
			<select name="type">
15
				<?php foreach($serviceList as $serviceName => $serviceInfo){?>
16
					<option value="<?php echo $serviceName?>"><?php echo $serviceInfo['label']?></option>
17
				<?php }?>
18
			</select>
19
		</td>
20
	</tr>
21
	<tr class="form_data">
22
		<td><?php echo $spText['common']['Link']?>: </td>
23
		<td>
24
			<input type="url" style="width: 400px;" value="" name="url"/>
25
		</td>
26
	</tr>
27
	<tr class="form_data">
28
		<td style="border-right: 0px;">&nbsp;</td>
29
		<td style="border-left: 0px;">
30
			<br>
31
			<a href="javascript:void(0);" onclick="<?php echo $actFun?>" class="actionbut"><?php echo $spText['button']['Proceed']?></a>
32
			<br><br>
33
		</td>
34
	</tr>
35
</table>
36
</form>
37
<br><br>
38
<div id='subcontent'></div>