I have an HTML form for a limo company's info, kind of like this:
<td>
<input type="text" name="sedan-number-fleet" />
</td>
<td>
<input type="text" name="sedan-year-range" />
</td>
and so on. When I put them into PHP, like so:
$input_sedan_number_fleet = strip_tags($POST['sedan-number-fleet']);
$input_sedan_year_range = strip_tags($POST['sedan-year-range']);
it comes out with no result when I try to echo it. Does it have to do with the strip_tags function? If you know, let me know. That would be great! Thanks!