como poder integrar código prg y php
por ejemplo necesito hacer esto pero no funciona
- Code: Select all Expand view RUN
- // {% LoadHrb( 'lib/tweb/tweb.hrb' ) %}
// {% LoadHrb( 'lib/funlib/funlibweb.hrb' ) %}
function main()
if ! Is_Session()
Redirect( "/webpato/index.prg" )
retu nil
endif
<?php
require_once "controllers/template.php";
$template = new TemplateController();
$template -> template();
?>
return nil
ya que tengo este codigo como php y funciona
archivo inicio.php
- Code: Select all Expand view RUN
- <?php
require_once "controllers/template.php";
$template = new TemplateController();
$template -> template();
?>