Scritto Script  |  Get

Med Scritto Script kan man både kontrollera och publicera get-variabler som skickas som url-parametrar. För att till exempel publicera innehållet i en get-variabel använder man print.

http://secondbase.se/?variable=hello

{ print #variable from url }

Man kan också kontrollera värden i get-variabler genom att använda if.

http://secondbase.se/?variable=hello

{ if #variable from url is "hello" }
   <p>Hello yourself</p>
{ end if }

{ if #variable from url is empy }
   <p>No hello today?</p>
{ end if }

Här följer en komplett lista med exempel på if- och skip-satser som kan användas tillsammans med get-variabler.

{ if #variable from url is "hello" }...{ end if }
{ if #variable from url is not "hello" }...{ end if }
{ if #variable from url is empty }...{ end if }
{ if #variable from url is not empty }...{ end if }

{ skip if #variable from url is "hello" }...{ end skip }
{ skip if #variable from url is not "hello" }...{ end skip }
{ skip if #variable from url is empty }...{ end skip }
{ skip if #variable from url is not empty }...{ end skip }