Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
# Create basic select query
<psdbi command=query qid=product>
SELECT * FROM inventory WHERE type='Basic'
</psdbi>
# Call for results to above query
<psdbi command=result qid=product>
# Process a Perl command on the results
<psdbi1 command=execute>
{
my $output;
if (!product.stock! == 0)
{
$output = 'SOLD OUT';
}
else
{
$output = 'Price: !product.price!';
</psdbi1>
</psdbi>
# Be sure to close all open tags