What We Do

Contact Us

Shopping Cart Demo

-- Merchant Utils --

List / Manage Documents

Build Link to Cart

Build Link to Gateway

URL encode & Escape

MD5 & SHA1 Hash

ShowRSS Digest

BuildRSS Feed/Blog

ShowHTML from Website

Secure Data Decode

-- Learn More --

Content Management

Sell Gift Certificates

Add-to-Cart

Gateway Field Names

Email Engine

-- Notice & Contract --

Legal Notice

Client Contract




-- Expiring Domains --

JustDropped.com

WSMDomains.com

CIRA TBR

-- Utilities --
Domain Tools

FileInfo (.ext)

Epoch Converter

-- Hosting --
Blue Fur

Dot Easy Free Hosting

Host Gator

Host Monster

(The) Hosting Service

Korax Web Hosting

Netfirms Hosting

-- Other Services --
AVG Anti-Virus (Grisoft)

Ad-Aware (Lavasoft)

Easy DNS

Core FTP

Smart FTP

Fast PDF

PDF Online

Google Language Tools

Ascii Table

Alt Codes French Accents

-- Illustrations & Photos --
Brad Fitzpatrick

Fotolia

iStockPhoto





 List / Manage Documents

Enter your merchant id below to list your documents.

MerchantId:



 Document List follows ...

No documents to list 1


** At the end of each document name, in parenthesis, is the shortname used to include the document onto a webpage. If the document is part of a sub-account, there will be a "/" followed by the sub-account name. The sub-account may be called "member name" on reseller pages.




 To include a document onto a webpage



** CMS resellers can substitute their own domain name for shopdaddy.com


PHP include :
<?PHP
@readfile("http://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME");
?>



JAVASCRIPT include :
<script type="text/javascript" src="http://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME&js=yes"></script>



ASP include :
<%
GotothisURL ="http://www.shopdaddy.com/utils/echoDoc.php?
merchantId=MERCHANTID&doc=SHORTNAME"
' Create the xml object
Set GetConnection = CreateObject("Microsoft.XMLHTTP")
' Conect to specified URL
GetConnection.Open "get", GotothisURL, False
on error resume next
GetConnection.Send
ResponsePage = GetConnection.responseText
Response.write (ResponsePage)
Set GetConnection = Nothing
%>