Приём данных формы
Text field is empty
Checkbox 1 is off
Checkbox 2 is off
Checkbox 3 is off
is selected
Код, отвечающий за обработку данных
<?
$Textfield = substr( htmlspecialchars($Textfield), 0, 80);
if ($Textfield) {
printf( "Text field: <b>%s</b><br>\n", stripslashes($Textfield));
} else {
echo( "Text field is empty<br>\n" );
}
for ($i=1; $i<=3; $i++) {
printf( "Checkbox %d ", $i);
if ($Chk[$i] == "on") {
echo( "is on<br>\n" );
} else {
echo( "is off<br>\n" );
}
}
for ($i=1; $i<=3; $i++) {
if ($Radio == $i) {
printf( "Radio button %d is on<br>\n", $i);
}
}
$SelectionArray = array("Menu string 1", "Menu string 2", "Menu string 3");
printf( "<b>%s</b> is selected\n", $SelectionArray[$Selection]);
?>
Вернуться к статье