Answers for "how to include only post variable from another file php"

PHP
0

how to include only post variable from another file php

<?php
if(isset($_POST['submit']))
{
    $my_cat=$_POST['category'];
    include('db_store.php');
    echo "SELECT * FROM tabl_name where category_id='".$my_cat."';
}
?>
Posted by: Guest on February-26-2022

Code answers related to "how to include only post variable from another file php"

Browse Popular Code Answers by Language