<?php
require("header.php");
?>
Menu > Script Usage<br><br><br>
<b>Script Usage: How to run scripts.</b><br><br>
1. First, click the New Product link. <a href = "button.php" STYLE="text-decoration:underline;color:#0000cc;font-weight:bold;">New Product</a><br>
<br>
When you submitted the product, the download link for button script will be output to the browser.<br>
Download the Button Script file and upload it to your own server.<br><br>
Note: All the product information you provide when submitting form, with the exception of your file, is stored in our database on our secure server.
<br><br>
2. Upload the .php script file (sdn[ProductNumber].php) on your sever via FTP.<br>
<br>
Example:
<br>
<pre>
[ folder ]
| <b>yourselldownloadpage.html (index.html etc.)</b>
| <b>sdn[ProductNumber].php</b>
</pre>
<br>
3. Change file extension from <b>.html</b> to <b>.php</b><br><br>
Example:<br>
from <b>yourselldownloadpage.html</b> to <b>yourselldownloadpage.php</b>
<br>
<pre>
[ folder ]
| <b>yourselldownloadpage.php (index.php etc.)</b>
| <b>sdn[ProductNumber].php</b>
</pre>
<br>
4. Open the yourselldownloadpage.php file and include the following tag:<br>
<input type="text" value="<?require "./sdn[NroductNumber].php";?>"> & <input type="text" value="<?echo getSDLink();?>"><br>
Note: please change a file name from [ProductNumber] to your ProductNumber.<br>
Example:<br>
from <?require "./sdn[ProductNumber].php";?> to <?require "./sdn000.php";?><br>
-----------------------------------------------------------------------------<br>
<b><?require "./sdn[ProductNumber].php";?></b> //First line:<br>
<HTML><br>
<HEAD><br>
</HEAD><br>
<BODY><br>
<br>
<b><?echo getSDLink();?></b><br>
//You need to paste the code in between the <BODY> and the </BODY> tags of the document.
<br>
</BODY><br>
</HTML><br>
-----------------------------------------------------------------------------<br>
If the your site's button is being previewed, the your link displays below the button on the SDN user's sales page.<br>
It will be proportional to the number of times that the your button was displayed on the your sales page.<br>
<br><br>
<b>How to edit or delete product button.</b><br>
<br>
If the visitor or crawler has not previewed the button for a period of 180 days,<br>
you will be sent a warning via email that your button is inactive.<br>
If you wish to keep your button active, you will have 30 days to view the button.<br>
Once you viewed the button, the 180-day inactivity timer will reset.<br>
If it has not viewed within the 30 day allotment, your any uploaded data will be deleted.<br>
<br><br>
<?php
require("footer.php");
?>