Hope this makes since.
trying to build a ffa script, then join this submission service, they send a massive amount of links. But first need to pass that test to see if the form works, and link gets entered into database, and then link shows up on page.
Need a page with a form on it, that when filled out, the data gets put into a database, and then is shown on a page as links.
I am trying to get the form to work with this automated service that will send hundreds of links. Like a ffa submissions automatically.
Here is what they say:
Please note that if you cannot add your site to our
service, you will not be able to add it to most
automatic submission services.
Your submission script must be able to accept at least
a Business section for the link posted.
Which this form does.
If you change your script to accept at least a Business
section and show the submitted link after submission on
the main page then you can try submitting it again and
you should be successful.
Here is example of the form needed.
<form method="POST"
action="http://somesite.com/links.php">
<p>Title: <input type="text" name="title" size="55"
maxlength="60"><br>
URL: <input type="text" name="url" size="55"><br>
Email Address: <input type="text" name="email"
size="47"><br>
Section to be placed in: <select name="section"
size="1">
<option> Business </option>
<option> Computers </option>
<option> Education </option>
<option> Entertainment </option>
<option> Government </option>
<option> Personal </option>
<option selected> Miscellaneous </option>
</select><br>
<input type="submit" value="Add"> * <input
type="reset"></p>
</form>