I'm trying to get different band names, but then i type $Band = "Azuolas" and $Band="Ąžuolas" I gate both at the same time. how can I fix this?
$band =$_POST['band_name'];
$sql= "SELECT Band FROM Songs WHERE Band='".$band."' ";
$query_run =mysqli_query($con, $sql);
while($mysqli_fetch_assoc =mysqli_fetch_assoc($query_run)){
echo $mysqli_fetch_assoc['Band']."<br>";
}