I am trying to pass a variable named body to another page.
Here is the code on the sending page:
<a href="print.dhtm?body=index" target="_blank">printer friendly page</a>
Here is the code on the receiving page:
<?php print("$body"); ?>
This is the error I get:
Notice: Undefined variable: body in /print.dhtm on line 10\
Our servers are set up to use dhtm instead of php, could this be causeing the problem or do I have a code error?
I would appreciate any help. Thanks!