Есть часть php кода
if (isset($english911Pricing) && $english911Pricing) {
$SALE = false;
$endDate = "15.10.2018";
$array_pricing = array(
"com.b2c.questions.answers.1.month" => array( "price" => "$2", "discount" => "$1.49" ),
"com.b2c.questions.answers.3.month" => array( "price" => "$5", "discount" => "$3.49" ),
"com.b2c.questions.answers.6.month" => array( "price" => "$9", "discount" => "$6.49" ),
"com.b2c.questions.answers.12.month" => array( "price" => "$12", "discount" => "$8.49" )
);
Создаю файл php отдельный, подключаю файл, вывожу переменную которую хочу, но ничего не отображается...
<?php
include 'category-api-english911.php';
echo "$endDate";
?>
Если ее обьявлять в отдельном файле то все ок
-
Вопрос задан
-
130 просмотров