get does not working in this code I tried this one and have
Notice: Undefined index: charttype
<form method="POST" action="index.php" name="charttype">
<select name="charttype" id="charttype" class="custom-select" value="charttype">
<option selected value="0">Choose...</option>
<option value="1">Pie Chart</option>
<option value="2">Scatter Chart</option>
<option value="3">Bar Chart</option>
<option value="4">Line Chart</option>
</select>
</form>
<?php
$chart_type = "";
$chart_type = $_GET['charttype'];
?>