I'm using php 7. I trying to put php variable value into html textbox, but it doesn't work.
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<form action="two.php" method="POST">
<input type="text" name="id_brg" value="<?php echo $_GET['id_brg'] ?>">
</form>
</body>
</html>
two.php
<?php
$id_brg = $_POST[uniqidi()];
?>
$_POST['id_brg'].htmlor in.php.?