Ich steig aus ich verstehs nicht
ein funktion in parser.php
soll second.php ausführen & das ergebnis als $html weiterreichen.
funkt
nur second.php benötigt ein post ($var) wie übergebe ich diese?
<?php
if($_POST){$var=$_POST;}
....
....
....
function gen_cont(.................,$svar,$html){
$filename = "/www/xxy/second.php";
$output="/tmp/output.txt";
system("/usr/bin/php $filename > $output");
$filename=$output;
if(is_file($filename)){
$fd = fopen( $filename, "r" );
$s = fread($fd, filesize($filename));
fclose( $fd );
}
$html = preg_replace("/\[#CONTAREA#\]/",$s,$html);
return $html;}}
ein funktion in parser.php
soll second.php ausführen & das ergebnis als $html weiterreichen.
funkt
nur second.php benötigt ein post ($var) wie übergebe ich diese?
<?php
if($_POST){$var=$_POST;}
....
....
....
function gen_cont(.................,$svar,$html){
$filename = "/www/xxy/second.php";
$output="/tmp/output.txt";
system("/usr/bin/php $filename > $output");
$filename=$output;
if(is_file($filename)){
$fd = fopen( $filename, "r" );
$s = fread($fd, filesize($filename));
fclose( $fd );
}
$html = preg_replace("/\[#CONTAREA#\]/",$s,$html);
return $html;}}
Kommentar