0
Как привязать полле для ввода к условию if...else ?
допустим есть поле для ввода <input type="text" name="numb" > условие : if (<numb> === "0") { } помойму ,так?
3 Respostas
+ 1
It depends on the method attribute of the <form> where the <input> element is placed.
***** POST method *****
<form method="post">
<input type="text" name="numb">
<!-- other form inputs -->
</form>
* Read the value from $_POST in PHP.
<?php
$numb = $_POST['numb'];
if ($numb === 0) {
echo 'numb equals zero';
} else {
echo 'numb not equal zero';
}
?>
***** GET method *****
<form method="get">
<input type="text" name="numb">
<!-- other form inputs -->
</form>
* Read the value from $_GET in PHP.
<?php
$numb = $_GET['numb'];
if ($numb === 0) {
echo 'numb equals zero';
} else {
echo 'numb not equal zero';
}
?>
+ 1
lpang благодарю.
+ 1
Добро пожаловать, извините, мой ответ на английском языке, я использовал Google Translate, чтобы прочитать вопрос : )