- Автор темы
- #1
Суть проблемы. Есть РНР файл вида:
(Nano CMS from Lasto) и в него надо вкрутить код вида:
1. At the very top - on the first line of your document page write the following:
2. Where you want to place your template write the following:
(где needed_file.php - файл с обычным куском HTML кода вида <table>...</table>)
или
CURL Codes (use these as alternatives to the upper ones and if your hosting has php remote includes disabled)
1. At the very top - on the first line of your document page write the following:
2. Where you want to place your template write the following:
В HTML'e и обычном PHP файле проблем не вижу, но не знаю, как это заставить работать при наличии конструкции
Взять переменные из скрипта, что требует вставки этого кода, тоже не могу - под зендом... Да и наврядли это необходимо, как мне кажется.
Подскажите, плз, кто РНР знает, а то у меня с этим как-то...
Спасибо заранее!
P.S. К аффтару просьба не отсылать - он на такие вопросы не отвечает. Хотя, имхо, это должно быть освещено в доках...
PHP:
<?php
$title="Ххххх";
$content=<<<EOF
<SCRIPT src="vh/s44.js" type=text/javascript></SCRIPT>
<h1 class=pan>Хххх ххх ххх ххх:</h1>
.......
.......
EOF;
?>
1. At the very top - on the first line of your document page write the following:
PHP:
<img src="http://domain.loc/dir/in.php?referer=<? echo rawurlencode($HTTP_REFERER)?>&template=index_ja" border=0 width=0 height=0>
Код:
<?php @require_once "http://domain.loc/dir/needed_file.php"?>
или
CURL Codes (use these as alternatives to the upper ones and if your hosting has php remote includes disabled)
1. At the very top - on the first line of your document page write the following:
PHP:
<img src="http://junavenu.loc/so/soin.php?referer=<? echo rawurlencode($HTTP_REFERER)?>&template=index_ja" border=0 width=0 height=0>
PHP:
<?php
$ch=curl_init();
curl_setopt($ch, CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_URL,"http://junavenu.loc/so/sohtml/index_ja.php");
curl_exec($ch);
?>
PHP:
$var=<<<EOF....EOF;
Подскажите, плз, кто РНР знает, а то у меня с этим как-то...
Спасибо заранее!
P.S. К аффтару просьба не отсылать - он на такие вопросы не отвечает. Хотя, имхо, это должно быть освещено в доках...