Hi Sancar,
SS> Hi All, I got questions about template file reading.
SS> // Not working code
SS> $this->templateFileContent =
SS> $this->cObj->fileResource($this->conf['template_file']);
You pass wrong params, read about fileResource in TSRef
SS> // Working code
$this->>templateFileContent =
Sancar Saran wrote:
> // Not working code
> $this->templateFileContent =
> $this->cObj->fileResource($this->conf['template_file']);
>
> // Working code
> $this->templateFileContent =
> file_get_contents($this->conf['template_file']);
>
> Does anybody have a clue about this.
You got absolut
Hi All, I got questions about template file reading.
// Not working code
$this->templateFileContent =
$this->cObj->fileResource($this->conf['template_file']);
// Working code
$this->templateFileContent =
file_get_contents($this->conf['template_file']);
Does anybody have a clue about this.