11 Ocak 2025

PHP Post Kullanımı

form.php dosyası => 

<!DOCTYPE html>

<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>POST</title>
</head>
<body>

<form action="post.php" method="post">

<input type="text" name="isim" placeholder="Isim"><br>
<input type="text" name="soyisim" placeholder="Soyisim"><br>

<label>Diller</label><br>
<label>PHP</label>
<input type="checkbox" value="php" name="dil[]"><br>
<label>NODEJS</label>
<input type="checkbox" value="node" name="dil[]"><br>
<label>JS</label>
<input type="checkbox" value="js" name="dil[]"><br>

<button type="submit"> Gonder </button>
</form>




</body>
</html>

post.php dosyası =>
<?php
error_reporting(E_ALL);

function filtre($p)
{
return is_array($p) ? array_map('filtre', $p) : htmlspecialchars(trim($p));
}

$dizi = array_map('filtre', $_POST);

echo "<pre>";

print_r($dizi);

?>

Hiç yorum yok:

Yorum Gönder