iframe php eval işlevi

1 Cevap php

i bir yankı bir iframe var:

<iframe width='100%' height='100'>$content</iframe>
$content = eval ( "\$bugs = \"" . gettemplate ('bugs') . "\";" );

ama çalışmıyor.

nasıl ben bir iframe sayfayı göstermek için php den eval işlevini kullanabilirsiniz?

thnx!

1 Cevap

Aşağıdaki kodu başvurun

<?php
$string = 'cup';
$name = 'coffee';
$str = 'This is a $string with my $name in it.';
echo $str. "\n";
eval("\$str = \"$str\";");
echo $str. "\n";
?>