Okay, I understand what your saying , but I dont think you Understand what I'm saying.
Heres a snippet of the full page:
<!-- ------------------------------------------------- -->
<tr>
<td height="100" bgcolor="#FFFFFF" valign="top">
<center><?php echo "$headerpic"; ?></center>
</td>
</tr>
<!-- ------------------------------------------------- -->
<tr>
<td class="forTexts" style="padding:10"><h2>Recent News</h2><br>
<?php $headerpic = "<img src=\"images/main.jpg\" width=\"760\" height=\"100\">"; ?>
<?php require 'config.php'; ?>
Where in the first section, I am trying to load the pic, and in the second section, it is defining the variable as the path for the pic.
What I WOULD do is require the config.php in the first section, where the variable would be defined in the file, but the thing is, the bottom section will later be put into a seperate file as the top section, hence why I need it to be defined "later".
Is there a way to like.. skip that php code int he top section, then come back to it when the variable is defined?