Subversion Repositories cheapmusic

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
103 - 1
<form id="editSubmitInfo">
2
<input type="hidden" name="sec" value="updatesiteinfo"/>
3
<input type="hidden" name="website_id" value="<?php echo $websiteInfo['website_id']?>"/>
4
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="list">
5
	<tr class="listHead">
6
		<td class="left" style="width: 30%"><?php echo $spTextDir['Submission Details']?></td>
7
		<td class="right">&nbsp;</td>
8
	</tr>
9
	<tr class="white_row">
10
		<td class="td_left_col"><?php echo $spTextDir['Owner Name']?>:</td>
11
		<td class="td_right_col">
12
			<input type="text" name="owner_name" value="<?php echo stripslashes($websiteInfo['owner_name'])?>" style="width:300px;"><?php echo $errMsg['owner_name']?>
13
		</td>
14
	</tr>
15
	<tr class="blue_row">
16
		<td class="td_left_col"><?php echo $spTextDir['Owner Email']?>:</td>
17
		<td class="td_right_col">
18
			<input type="text" name="owner_email" value="<?php echo $websiteInfo['owner_email']?>" style="width:300px;"><?php echo $errMsg['owner_email']?>
19
			<p><?php echo $spTextDir['spamemailnote']?></p>
20
		</td>
21
	</tr>
22
	<tr class="white_row">
23
		<td class="td_left_col"><?php echo $spTextDir['Website Category']?>:</td>
24
		<td class="td_right_col">
25
			<input type="text" name="category" value="<?php echo stripslashes($websiteInfo['category'])?>" style="width:300px;"><?php echo $errMsg['category']?>
26
			<p><?php echo $spTextDir['categorynote']?></p>
27
			<p>Eg: google seo tools, seo tools, seo</p>
28
		</td>
29
	</tr>
30
	<tr class="blue_row">
31
		<td class="td_left_col"><?php echo $spTextDir['Website Url']?>:</td>
32
		<td class="td_right_col">
33
			<input type="text" id="weburl" name="url" value="<?php echo $websiteInfo['url']?>" style="width:300px;">
34
			<a style="text-decoration: none;" href="javascript:void(0);" onclick="crawlMetaData('websites.php?sec=crawlmeta', 'crawlstats')">&#171&#171 <?php echo $spText['common']['Crawl Meta Data']?></a>
35
			<div id="crawlstats" style="float: right;padding-right:40px;"></div>
36
			<br><?php echo $errMsg['url']?>
37
		</td>
38
	</tr>
39
	<tr class="white_row">
40
		<td class="td_left_col"><?php echo $spTextDir['Submit Title']?>1:</td>
41
		<td class="td_right_col"><input type="text" id="webtitle" name="title" value="<?php echo stripslashes($websiteInfo['title'])?>" style="width:400px;"><?php echo $errMsg['title']?></td>
42
	</tr>
43
	<tr class="blue_row">
44
		<td class="td_left_col"><?php echo $spTextDir['Submit Description']?>1:</td>
45
		<td class="td_right_col">
46
			<textarea name="description" id="webdescription"><?php echo stripslashes($websiteInfo['description'])?></textarea><?php echo $errMsg['description']?>
47
			<p><?php echo $spTextDir['desnote']?></p>
48
		</td>
49
	</tr>
50
	<tr class="white_row">
51
		<td class="td_left_col"><?php echo $spTextDir['Submit Keywords']?>:</td>
52
		<td class="td_right_col"><textarea name="keywords" id="webkeywords"><?php echo stripslashes($websiteInfo['keywords'])?></textarea><?php echo $errMsg['keywords']?></td>
53
	</tr>
54
	<tr class="blue_row">
55
		<td class="td_left_col"><?php echo $spTextDir['Reciprocal Link']?>:</td>
56
		<td class="td_right_col"><input type="text" name="reciprocal_url" value="<?php echo stripslashes($websiteInfo['reciprocal_url'])?>" style="width:400px;"></td>
57
	</tr>
58
	<tr class="white_row" style="border-right: none;">
59
		<td class="td_left_col">&nbsp;</td>
60
		<td class="td_right_col"><b><?php echo $spTextDir['optionalnote']?></b></td>
61
	</tr>
62
	<?php for($i=2;$i<=$noTitles;$i++){?>
63
		<tr class="blue_row">
64
			<td class="td_left_col"><?php echo $spTextDir['Submit Title']?><?php echo $i?>:</td>
65
			<td class="td_right_col"><input type="text" name="title<?php echo $i?>" value="<?php echo stripslashes($websiteInfo['title'.$i])?>" style="width:400px;"></td>
66
		</tr>
67
		<tr class="white_row">
68
			<td class="td_left_col"><?php echo $spTextDir['Submit Description']?><?php echo $i?>:</td>
69
			<td class="td_right_col">
70
				<textarea name="description<?php echo $i?>"><?php echo stripslashes($websiteInfo['description'.$i])?></textarea>
71
			</td>
72
		</tr>
73
	<?php }?>
74
	<tr class="blue_row">
75
		<td class="tab_left_bot_noborder"></td>
76
		<td class="tab_right_bot"></td>
77
	</tr>
78
	<tr class="listBot">
79
		<td class="left" colspan="1"></td>
80
		<td class="right"></td>
81
	</tr>
82
</table>
83
<table width="100%" cellspacing="0" cellpadding="0" border="0" class="actionSec">
84
	<tr>
85
    	<td style="padding-top: 6px;text-align:right;">
86
    		<a onclick="scriptDoLoad('directories.php', 'content')" href="javascript:void(0);" class="actionbut">
87
         		<?php echo $spText['button']['Cancel']?>
88
         	</a>&nbsp;
89
         	<a onclick="scriptDoLoadPost('directories.php', 'editSubmitInfo', 'subcontent')" href="javascript:void(0);" class="actionbut">
90
         		<?php echo $spText['button']['Proceed']?>
91
         	</a>
92
    	</td>
93
	</tr>
94
</table>
95
</form>