Code
<?
$payment="5.00";//Put the amount that you wish to pay to affiliates who are responsible for this sale
include 'includes/pnAPI.php';
pnInit();
include 'modules/pnAffiliate/includes/registersale.php';
$output = new pnHTML();
$output->StartPage();
$output->SetInputMode(_PNH_VERBATIMINPUT);
$output->text("thank you");
$output->EndPage();
$output->PrintPage();
?>
$payment="5.00";//Put the amount that you wish to pay to affiliates who are responsible for this sale
include 'includes/pnAPI.php';
pnInit();
include 'modules/pnAffiliate/includes/registersale.php';
$output = new pnHTML();
$output->StartPage();
$output->SetInputMode(_PNH_VERBATIMINPUT);
$output->text("thank you");
$output->EndPage();
$output->PrintPage();
?>
Here is where I am running into problems that the code
Code
$output->text("thank you");
What I would like to do is make the output in HTML instead of txt so that the text can be spaced down a bit more toward the center of the page and in a larger font size. I would also like to be able to include links to direct the user to take more action.
I have tried several different approaches but I always wind up with the text at the top before the page renders, at the bottom after the page renders or creating a parse error because I am hunting around in the dark.
Thanks in advance for any help.
Bill
