Öğrenmek için kodladığım sitenin admin panelinde listelenen bir bölümü id çekerek değiştirmek istiyorum. Fakat düzenleme sayfasında inputlara veritabanındaki bilgiler gelmiyor ve sitenin en üstünde de
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in E:\AppServ\www\kisisel\bugra\hizmet_duzenle.php on line 6
Bu hatayı alıyorum sorun nerededir acaba? İlgili iki sayfayı paylaşıyorum.
ohizmetlerimiz.php [Bu sayfa veritabanında bulunan bilgilerin listelendiği bölüm]
Buğra BALCANCI Admin Paneli
<script></script>
<script></script>
<script></script>
<script></script>
<script>
$(document).ready(function()
{
$(".tablesorter").tablesorter();
}
);
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
</script>
<script>
$(function(){
$('.column').equalHeight();
});
</script>
Buğra BALCANCI
Admin Paneli
Buğra BALCANCI Kişisel Sitesinin Admin Paneli
İLETİŞİM admin BÖLÜMÜ
ID
Mesaj
Link
Sıra
Eylem
$hizmetbaglan=mysql_query("SELECT * from hizmetler ORDER by hizmetsira ASC") or die("Hata Olustu!");;
while ($hizmet = mysql_fetch_assoc($hizmetbaglan)) {
?>
}
?>
hizmet_duzenle.php [Bu düzenleme sayfasıdır.]
$id=$_GET['hizmetid'];
$sorgu=mysql_query("select * from hizmetler where id='$id'");
$bilgi = mysql_fetch_array($sorgu);
?>
Buğra BALCANCI Admin Paneli
<script></script>
<script></script>
<script></script>
<script></script>
<script>
$(document).ready(function()
{
$(".tablesorter").tablesorter();
}
);
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
</script>
<script>
$(function(){
$('.column').equalHeight();
});
</script>
Buğra BALCANCI
Admin Paneli
Buğra BALCANCI Kişisel Sitesinin Admin Paneli
İLETİŞİM admin BÖLÜMÜ
Ek Olarak: Sorunu çözdüm.
hizmet_duzenle.php sayfasını şöyle değiştirerek sorunu hallettim. Lazım olan arkadaşlar görebilsinler.
$vbaglan=mysql_query("SELECT * from hizmetler WHERE hizmetid='$_GET[hizmetid]'");
$listele = mysql_fetch_array($vbaglan);
$hizmetid=$listele['hizmetid'];
$hizmetadi=$listele['hizmetadi'];
$hizmetlink=$listele['hizmetlink'];
$hizmetsira=$listele['hizmetsira'];
?>
Buğra BALCANCI Admin Paneli
<script></script>
<script></script>
<script></script>
<script></script>
<script>
$(document).ready(function()
{
$(".tablesorter").tablesorter();
}
);
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active ID content
return false;
});
});
</script>
<script>
$(function(){
$('.column').equalHeight();
});
</script>
Buğra BALCANCI
Admin Paneli
Buğra BALCANCI Kişisel Sitesinin Admin Paneli
İLETİŞİM admin BÖLÜMÜ