A former coworker set up the zoho database in 2007 & 2008 with various views that would automatically show up on our website, and the links used to work correctly.. now the website will not update with the zoho creator data. HELP!!! here is one source page of the website. where the heck do I find the new or updated link for zoho creator? it's supposed to automatically populate the following website:
http://www.hchlibrary.org/gala/sponsors2013.php
<title>The Henry Carter Hull Library | Gala 2013</title>
<?php
include_once("../includes/shared_head_elements.php")
?>
<style type='text/css'>
#content div.auctionitem {
clear: both;
}
#content h2.category {
font-size: 1.7em;
padding-bottom: 0.5em;
}
#content h3.item {
padding-top: 1em;
}
#content p.donor, #content p.url {
margin: 0px;
padding: 0px;
}
#content img {
float: right;
border: 0px solid white;
padding: 1em 60px 0px 10px;
}
#content a {
border: 0px solid white;
}
</style>
<script type='text/javascript' src='http://creator.zoho.com/hchlibrary/json/5/VQhQHvB2Ys9RrsNjBzGQUHFdy1VSJFDubMzW2wvJxyYCOyKbXrJSY8VQ9DWUEMzPvu8yNGaChPgZafrF1FOJpYGvC2vOh0NsnNQr/'></script>
<script type='text/javascript'>
<!--
function list(category) {
//declare variables
var item = "";
var donor = "";
var website = "";
var comments = "";
var image = "";
//if there are any tems in the category, write the name of ehe category
for (var i=0; i<zohohchlibraryview5.donations2007.length; i++) {
if (zohohchlibraryview5.donations2007[i].item_type == category) {
document.write("<h2 class='category'>"+category+"</h2>\n");
break;
}
}
//loop through the list
for (var i=0; i<zohohchlibraryview5.donations2007.length; i++) {
//if an item is in the category, write it on the page
if (zohohchlibraryview5.donations2007[i].item_type == category) {
//set the variables for the entry
item = zohohchlibraryview5.donations2007[i].item;
donor = zohohchlibraryview5.donations2007[i].donor_s_name;
//if there is no donor listed, use Anonymous
if (donor == "") {donor = "Anonymous";}
website = zohohchlibraryview5.donations2007[i].website;
comments = zohohchlibraryview5.donations2007[i].Comments;
image = zohohchlibraryview5.donations2007[i].image_url;
document.write("<div class='auctionitem'>\n");
if (image != "") {
document.write(image+"\n");
}
document.write("<h3 class='item'>"+item+"</h3>\n");
document.write("<p class='donor'>Generously donated by <strong>"+donor+"</strong></p>\n");
if (website != ""){
document.write("<p class='url'><a target='_blank' href='http://"+website+"'>"+website+"</a></p>\n");
}
if (comments != "") {
document.write(comments);
}
document.write("</div>\n");
}
}
document.write("<p class='spacer'> </p><br />\n");
}
//-->
</script>
</head>
<body>
<?php
include_once("../includes/shared_header.php");
include_once("../includes/events_subnav.php");
?>
<div id="content">
<h1 style="padding-bottom: 1.5em;">Browse our Auction Items</h1>
<script type='text/javascript'>
<!--
list("On the Town");
list("Be our Guest");
list("At your Service");
list("To Have and to Hold");
list("Guy Stuff");
//-->
</script>
<noscript>This page requires JavaScript.</noscript>
<p style="margin-bottom: 0px; position: relative; top: 1em;">data managed at <a target='_blank' href='http://creator.zoho.com/hchlibrary/gala2007/'>Zoho Creator</a></p>
</div>
<!--end content -->
<?php
include_once("../includes/shared_footer.php");
?>
</body>
</html>