if (isset($_POST['temakaydet'])) {
	
	$temakaydet=$db->prepare("UPDATE tema SET
		tema_id=:id,
		tema_name=:name,
		tema_css=:css,
		tema_durum=:durum
		WHERE tema_id='tema_id'");
	$update=$temakaydet->execute(array(
		'id' => $_POST['tema_id'],
		'name' => $_POST['tema_name'],
		'css' => $_POST['tema_css'],
		'durum' => $_POST['tema_durum']
		));
	if ($update) {
		Header("Location:../production/tema-ayar.php?durum=ok");
	} else {
		Header("Location:../production/tema-ayar.php?durum=no");
	}
// islem.php deki olay bu
}birde yönetim panelindeki düzenlediğim alandaki actionlar
birde buraya çektiğim alanın değişkeni;
$temasor=$db->prepare("select * from tema where tema_id=?");
$temasor->execute(array(0));
$temacek=$temasor->fetch(PDO::FETCH_ASSOC);şimdi bunun üzerinden anlatır mısın acaba hocam?
  