Link to home
Start Free TrialLog in
Avatar of manojoswal
manojoswal

asked on

execute another page inside one page

hi

i have a page "one.php".

in this page i want to execute another page "two.php" and show the complete html output of this page embeded in the "one.php"

how can i achive this ?

any help ?
Avatar of joep1978
joep1978

Hi there,

Inside one.php, do:

<?include ("two.php");?>

This will put the code through the parser and all output from two.php will be output inside one.php.

Hope that helps!
Avatar of manojoswal

ASKER

hi joep

now i actually want to send a html email having some message. and below it i want to execute an url and show the output
of that url in the email.

have u any idea how i can achieve this ?

ASKER CERTIFIED SOLUTION
Avatar of joep1978
joep1978

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
hi joep

this seems to be helpful a lot to me

please explain me in detail.
i am not getting anything in the URL at http://www.evilwalrus.com/viewcode.php?codeEx=522

i will be thankful a lot to you