Gogul
Gogul

Reputation: 298

How to Include PHP script return value in Typo3?

I want to display the result from a PHP file inside my content element. Kindly help me on this. Typo3 version is 4.7.2

Example:

Thanks In advance

Upvotes: 0

Views: 426

Answers (1)

Jost
Jost

Reputation: 5840

There are several ways:

  • Include a php file using a USER or USER_INT content object.
  • Write your own extension (the extension "extension_builder" helps there, but you need to use an older version for T3 v4.7)
  • You could write your own ViewHelper and use it from a FLUIDTEMPLATE content object.

Upvotes: 4

Related Questions