i've an id number that i want to throw with methode get php into bootstrap toggle button, and how can class="collapse" get the id number form the button and show it with include php? the simple code like this :
    <button type="button" class="btn btn-info" data-toggle="collapse" data-target="#rencanaterus">Lihat Pengeluaran</button>
<!--how to add get value php inside from the button?-->
        <div id="rencanaterus" class="collapse">
        <? 
        $_GET['idspd'] = 13;
        include 'my_table.php';?>
          </div>
i want it will be show the link like this www.mywebsite.com/my_table.php?idspd=13
before, thanks for your attention.
