Here is how you can add a field in the submit page for your customers to be able to submit a RSS Feed.
See example here;
site that uses rss feed Submit pagehere we go...
First add a field to your directory database in the link table.
I added an attachment for you to download containing the sql querry.
(if you don't see the attachment, login to the forum)
edit Detail.phpFind:
$data['URL'] = $rdata['URL'];
after add:
$data['RSS'] = $rdata['RSS'];
edit detail.tplFind:
<tr>
<td valign="top" class="label">{l}URL{/l}:</td>
<td align="left" valign="top" class="smallDesc"><span class="url">{$URL|escape|trim}</span> <a href="http://whois.domaintools.com/{$URL|escape|trim}" target="_blank">Whois?</a></td>
</tr>
After add:
<tr>
<td valign="top" class="label">{l}RSS{/l}:</td>
<td align="left" valign="top" class="smallDesc"><a href="{$RSS|escape|trim}" target="_blank">{$RSS|escape|trim}</a></td>
</tr>
edit include/tables.phpFind:
'URL' => 'C(255) NOTNULL' ,
After add:
'RSS' => 'C(255) NULL' ,
Edit submit.tplwherever you want the RSS field to show
<tr>
<td valign="top" class="label">{l}RSS Feed{/l}:</td>
<td class="field"><input type="text" name="RSS" value="{$RSS|escape|trim}" size="40" class="text"/>
</tr>