Code: Select all
<?php
$a = 1;
require('something.php');
require('something2.php');
?>
<html>
<body>
<p>aaaaaa
<?php echo '<br/>'.$a; ?>
<br/>
<p>aaaaaa
</body>
</html>Moderator: General Moderators
Code: Select all
<?php
$a = 1;
require('something.php');
require('something2.php');
?>
<html>
<body>
<p>aaaaaa
<?php echo '<br/>'.$a; ?>
<br/>
<p>aaaaaa
</body>
</html>Code: Select all
<?php
$a = 'aaaaaa';
$b = 'bbbbbb';
for($i = 0; $i < 100; $i ++)
require('test2.php');
?>
<html>
<body>
<?php
echo $a.$b;
?>
</body>
</html>Code: Select all
<?php
$justanything = 'justanything';
?>