Sorry dudes, my first post and I double posted. This thing is explained better in the post below. My bad.
I have this thing called an i-postcard. Basically it is a script that builds an HTML email based on some options in a flash file. It has a php script that sends the email. It works fine in php4, but once I switched it to php5 some of the POST variables inside my html won't work.
I won't bore anyone with the whole script, but pretty much I have
<?php
.... lots of fun code
ob_start();
?>
...fun html with this...
<?= $POST['cardnum'] ?>
<?= stripslashes( nl2br( htmlspecialchars($POST['greeting']) ) ) ?>
...more fun html...
<?php
...more php code (that works)
?>
The only thing that won't work (but also doesn't error out) are the two $_POST variables in the middle of the html. Any idears?