{{ php }}
// including a php script directly from the template.
include('/path/to/display_weather.php');
{{ /php }}
в шаблон всё стопорится на нем и не грузится дальше. Где может быть проблема? В логах Апача ничего.
Vitor 4.2.4
{{* a {{php}} block that assigns the variable $varX *}}
{{php}}
$template->assign('varX','Toffee');
{{/php}}
{{* output the variable in the template *}}
<strong>{{$varX}}</strong> is my favourite ice cream :-)
Я подключил скрипт вот так:
{{ php }}
// including a php script directly from the template.
include('/path/to/script.php');
{{ /php }}
Данные он мне на страницу выводит, но... Как в данном случае получить переменную $data['id'], например, лежащую внутри скрипта?
У меня в скрипте есть переменная $data['city'], её надо загнать в шаблон? а он выводит city
It looks like you're new here. If you want to get involved, click one of these buttons!