PHP interesse |
|
ik ben bezig met een editor.
alleen komt er geen output
code: Plaatscode: 136053
maar als ik dit doe:
<?php
$aContent = file('nvmcode.tpl');
for($i=0;$i<count($aContent);$i++) {
$aContent[$i] = str_replace('{naam}','hoi',$aContent[$i]);
$aContent[$i] = str_replace('{width}',500,$aContent[$i]);
$aContent[$i] = str_replace('{rows}',7,$aContent[$i]);
echo $aContent[$i];
}
?>
<?php $aContent = file('nvmcode.tpl'); for($i=0;$i<count($aContent);$i++) { $aContent[$i] = str_replace('{naam}','hoi',$aContent[$i]); $aContent[$i] = str_replace('{width}',500,$aContent[$i]); } ?>
krijg ik wel output.
wat gaat er fout?
|