As I understand a php POST method can be passed through the url
File name: test.php
<?php
if(isset($_POST['id']{
     echo'Great';
}else{
     echo'Why ?';
 }
 ?>
When I put manually in the browser /test.php?id=value it always returns the else statement
Why ?
 
     
     
    