Reuse the same code over and over again on your site with the [include] context.
numero = 124<body>[include file=/header_file.inc]<table><tr><td>[include file=/navigation_links_file.inc]</td><td>{the body of content would go here}</td></tr></table>[include file=/footer_file.inc]</body>The example above shows the include files saved to the root directory of your website. You could organize a bit easier by saving them in an /includes/ directory. Doing so would change the code to look like this:
[include file=/includes/navigation_links_file.inc]Reusing your same code over and over again on many pages within your website is a snap. The best examples would be to have an include file with your page header, navigation and page footer. Then from every page of your website you can insert the same files. This especially makes management of navigation links a snap because you only need to keep one text file up to date.
<body>
[include file=/header_file.inc]
<table>
<tr>
<td>
[include file=/navigation_links_file.inc]
</td>
<td>
{the body of content would go here}
</td>
</tr>
</table>
[include file=/footer_file.inc]
</body>
[include file=/includes/navigation_links_file.inc]
DOWNLOAD WEBDNA NOW!
...
WebDNA ModulesA list of the currently available modules...
F.A.QA compilation of some user's questions...
WebDNA LibrariesA list of available libraries for WebDNA...
Download WebDNA ApplicationsWebDNA applications...
AWS Raw WebDNA LAMP-Plus WebServerAmazon Web Services (AWS) README for Machine Image ID...
How can I remove all whitespace entered by a user from an input box (ie card number)...
ImageMagickUse ImageMagick to manipulate images when you upload them...
Extracting the first sentence out of a block of textI need to extract the first sentence out of a block of text...
Check the Federal Government's Social Security databaseThe script on the page will check the federal government's social security database...
random password-generator codeGenerate a random alpha-numeric string...
How to setup CODA to work with WebDNA?This page will show graphically how to setup CODA as a WebDNA partner :-)...