When I include another php file with a form, spaces get added in the source.
Here is the pertinent code.
From the first file:
include('../feedbackform.php');
feedbackform.php:
<?php
$module_id = $_POST['module_id'];
?>
<input type='hidden' name='module_id' value= '<?php echo $module_id;?>'>
What the source code says:
<input type='hidden' name='module_id' value=' 4'>
Where did the space before 4 ($module_id) come from??
Thanks!