Question
Loop PHP to CF, how make?
Guys,
I have the script PHP below.
How I write this script in ColdFusion, sorry for the dummie's ask
<?php
if(isset($_POST[“color”])) {
for($i = 0; $i < count($_POST[“color”]); $i++) {
echo “The color “.$_POST[“color”][$i].” was selected!<br />”;
}
} else {
echo “blablablablablablablabla”
}
?>
[ ]'s