Stephen
You could use text links and style them with borders.
See example below.
Do a web search on “style links css“
Given that you have many links, you could consider the options in the following Sitepoint article to use lists as a navigation tool.
I think it is easier than using buttons.
http://www.sitepoint.com/build-site-navigation-css/
The page that the link references would have the abase shortcode.
[abase sql=”UPDATE AVDMASTER p, SightingsEntrytmp pp
SET pp.MAKE = ‘1’
WHERE pp.UNIQUEID = p.UNIQUEID AND p.MAKE = ‘0’”]
———————————————
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
<html>
<head>
<title>Text Link</title>
<style type=”text/css” media=”screen”>
.button-link {
padding: 10px 15px;
background: #4080FF;
color: #FFF;
border: solid 1px #202080;
user-select: none;
width: 120px;
text-align: center;
text-decoration: none;
}
.button-link:hover {
background: #386098;
border: solid 1px #304080;
width: 120px;
}
.button-link:active {
background: #305080;
border: solid 1px #20405F;
width: 120px;
</style>
</head>
<body>
<p>Text Link</p>
</body>
</html>
Richard Harding
Hey Richard,
Thanks. I have done a little work around, by placing the sql queries on individual pages for now. Click on the page link and the query runs.
Followup question for you though. Do you know if Abase runs queries concurrently or in sequence? For example, if I place two sql queries on a page, would it run the them in order of placement:
[abase sql=”UPDATE AVDMASTER p, SightingsEntrytmp pp
SET pp.MAKE = ‘1’ WHERE pp.UNIQUEID = p.UNIQUEID AND p.MAKE = ‘0’;”]
[abase sql=”UPDATE SightingsEntrytmp p, AVDMASTER pp
SET pp.MAKE = ‘1’ WHERE pp.UNIQUEID = p.UNIQUEID AND p.MAKE = ‘1’;”]
I need to first query to be complete in order to run the second query.
Thanks,
Stephen