Actually I got a task to understand a whole website.. And because of this i start from the home page... So I face some problem....
The problem is that in a page there is a variable which seems to be called from the other page.... And i have no idea at all that from which page it had been called from.. ( Total no of php script page is more than 100 )
The code is below..
<?php if ($ErrorCode != "") { ?>
<tr>
<td colspan="3" bgcolor="red" align="center">
<!-- Error Message Row -->
<font class="TBLHEAD">
<?php
echo $ErrorCode;
ClearErrorCode();
?>
</font>
</td>
</tr>
and the variable which i am facing problem is $ErrorCode in the first line...
There are some require page mentioned in the very beginning of this page..
And this variable may had been called from those pages right???
But u know it is hard to look at each line in those pages to find that...
And there fore i want to know that is there any easier way to find that...
Oh I forgot to mentioned I use Dreamweaver for working with script..