I'm having trouble with the following code...
I'm trying to write to a flat file and the part that is giving me problems is this:
<?php
$success = writeToFile ($business_type, $maj_competitors, $products, $audience, $perception, $previous_stuff, $where_used, $image, $style, $dont_want, $colors, $time_spent, $words, $where_used, $other_comments);
if ($success) {
header ('Location: client_form_conf.php');
}
?>
Can anyone see any errors with it?
|