|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/yaleb/examples/ |
Upload File : |
# This line will see if the checkbox checky equals the string # "yes" and if so, set the success template to cond_s.txt if: (checky eq 'yes') then success : cond_s.txt # If checky wasn't set, we can use an 'unless' statement to # change things unless : checky then success : cond_n.txt # This whole config file is quite daft. # A sensible approach would have been to set success to cond_n.txt # before the 'if' statement and then get rid of the 'unless' statement. # However, I wanted to show the use of an unless statement.