Click to See Complete Forum and Search --> : echo message


renri1967
08-11-2006, 10:01 AM
Instead of doing echo "thank you";
I would like to echo to a web page.
I have tried echo "<a href = URL </a>";
that did not work

PineSolPirate
08-11-2006, 10:03 AM
You can use include() to execute another page.
If that page is just html, that's basically the same as printing it.
<?php include('page.html'); ?>
Be careful not to let end users control the page that is included directly though.

renri1967
08-11-2006, 10:10 AM
That seemed to work out for me thanks