The value of a variable changes during the processing of a template, depending on the foreach where it is filled. The value of a variable has the following notation method: ``` $V{name} ``` Example: the value of the variable "project" can be requested with: ``` $V{project} ``` Multiple foreach can be combined by putting them within a different foreach. The same name variable can be used in multiple. You can explicitly request from which foreach you would like to retrieve the value of a variable by explicitly referring to the alias of that foreach with the following notation method: ``` $V{alias.naam} ``` Example: the value of the variable "project" in the foreach with the alias "hoofd" can be requested with: ``` $V{hoofd.project} ```