|
Posted by ELINTPimp on 07/30/07 13:02
On Jun 20, 9:40 pm, "-1" <n...@dda.com> wrote:
> I have a php file that I have briefly shown some of the code of at the
> bottom of this message.
>
> Part A of the script runs an analysis and then based upon the analysis,
> either does no data output or outputs some data. Regardless of what happens
> in part A, part B then runs.
>
> Is there some code that I can put between Part A and Part B that would
> complete the following task.
>
> If after the analysis in part A, data is displayed on the webpage, then it
> would display and part B would not run and the php script would terminate.
> If after the analysis in part A, data is not displayed on the webpage, then
> and only then would part B run.
>
> Note that part A contains a script that is encrypted and can't be modified.
>
> Thank you
>
> **********************
> Part A
> <? virtual('/cgi-bin/analysis.pl') ?>
exit(0);
> **********************
> Part B
> <?php
> more code
> **********************
>
> ?>
[Back to original message]
|