hello i have a little bit problem i am working on php4 and apache 1.1
<?php
$something="first second";
echo '<input type="checkbox" name="standard[]" value='.$something.'>first second<br>';
?>
Result:
first
and if
<?php
echo '<input type="checkbox" name="standard[]" value="first second">first second<br>';
?>
Result:
first second
i want my code is like the first one but the result is in second one, how? thanks