I can insert a value into the band_id of the albums table as shown below:
$query = "insert into albums(band_id, name, track_list, info, year_released, album_pic_thumb, album_pic)
values('1','$name','$track_list','$info','$year_released','$album_pic_thumb','$album_pic')";
but how can i dynamically put the value in. eg. can the value "1" be exchanged for $band_id....the same band_id value from the bands table?