Smarty is a web template system written in PHP. Smarty is primarily promoted as a tool for separation of concerns, which is a common design strategy for certain kinds of applications.Smarty generates ... More
Smarty is a web template system written in PHP. Smarty is primarily promoted as a tool for separation of concerns, which is a common design strategy for certain kinds of applications.Smarty generates web content by the placement of special Smarty tags within a document. These tags are processed and substituted with other code.Tags are directives for Smarty that are enclosed by template delimiters. These directives can be variables, denoted by a dollar sign ($), functions, or logical or control flow statements. Smarty allows PHP programmers to define functions that can be accessed using Smarty tags.Smarty is intended to simplify compartmentalization, allowing the presentation of a web page to change separately from the back-end. Ideally, this eases the costs and efforts associated with software maintenance. Under successful application of this development strategy, designers are shielded from the back-end coding, and PHP programmers are shielded from the presentation coding.Smarty supports several high-level template programming features, including:regular expressionsControl flow statements, foreach, whileif, elseif, elsevariable modifiers - For example {$variable|nl2br}user created functionsmathematical evaluation within the templatealong with other features. There are other template engines that also support these features. Smarty templates are often incorporated into existing PHP web applications to some extent. More often it is used where a web application or a website has a theme system built into it, where the templates can be changed from theme to theme. [edit]Less
Information obtained from users, and repositories like FLOSSmole,Wikipedia,Apache, Codehaus,Tigris and several others. Please inform us of any errors, objections or omissions. You can find our terms of service here.
I am developing one site using PHP, Mysql, JavaScript & Smarty.
site is working fine on windows server but when i change the server windows to linux then i have got the problem of case-sensitivity with Smarty....as smarty is Case Sensitive
now my question is there any idea to have Case Insensitive Smarty?
or any idea how to remove Case insensitivity in linux?