Merhaba arkadaşlar elimde 1 adet script var bunu düzenliyorum fakat bir sorun var duyurular kısmına admin panelinden blog giriyorum ama üyelerin görebildiği indexte sadece 1 tane gösteriyor ve en son girileni gösteriyor nasıl düzeltebilirim bunu
aşağıda resimler mevcut

elimdeki script blog ile alakalı kodları:

BLOG.PHP


if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

mysql_select_db($database_ok_kisisel, $ok_kisisel);
$query_blgg = "SELECT * FROM blog ORDER BY id DESC";
$blgg = mysql_query($query_blgg, $ok_kisisel) or die(mysql_error());
$row_blgg = mysql_fetch_assoc($blgg);
$totalRows_blgg = mysql_num_rows($blgg);
?>






Pixmania - Premium HTML Template














mysql_free_result($blgg);
?>




BLOG-OKU.PHP


if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

$colname_blgs = "-1";
if (isset($_GET['id'])) {
$colname_blgs = $_GET['id'];
}
mysql_select_db($database_ok_kisisel, $ok_kisisel);
$query_blgs = sprintf("SELECT * FROM blog WHERE id = %s", GetSQLValueString($colname_blgs, "int"));
$blgs = mysql_query($query_blgs, $ok_kisisel) or die(mysql_error());
$row_blgs = mysql_fetch_assoc($blgs);
$totalRows_blgs = mysql_num_rows($blgs);
?>






Pixmania - Premium HTML Template















mysql_free_result($blgs);
?>




ADMİN PANELİ DOSYALARI

BLOG.PHP


ob_start();
session_start();
if (!isset($_SESSION)) {
session_start();
}
$MM_authorizedUsers = "";
$MM_donotCheckaccess = "true";

// *** Restrict Access To Page: Grant or deny access to this page
function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
// For security, start by assuming the visitor is NOT authorized.
$isValid = False;

// When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
// Therefore, we know that a user is NOT logged in if that Session variable is blank.
if (!empty($UserName)) {
// Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
// Parse the strings into arrays.
$arrUsers = Explode(",", $strUsers);
$arrGroups = Explode(",", $strGroups);
if (in_array($UserName, $arrUsers)) {
$isValid = true;
}
// Or, you may restrict access to only certain users based on their username.
if (in_array($UserGroup, $arrGroups)) {
$isValid = true;
}
if (($strUsers == "") && true) {
$isValid = true;
}
}
return $isValid;
}

$MM_restrictGoTo = "giris.php";
if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {
$MM_qsChar = "?";
$MM_referrer = $_SERVER['PHP_SELF'];
if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
$MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
$MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
header("Location: ". $MM_restrictGoTo);
exit;
}
?>
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
{
if (PHP_VERSION < 6) {
$theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
}

$theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

switch ($theType) {
case "text":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "long":
case "int":
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
break;
case "double":
$theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
break;
case "date":
$theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
break;
case "defined":
$theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
break;
}
return $theValue;
}
}

if ((isset($_GET['sil'])) && ($_GET['sil'] != "")) {
$deleteSQL = sprintf("DELETE FROM blog WHERE id=%s",
GetSQLValueString($_GET['sil'], "int"));

mysql_select_db($database_ok_kisisel, $ok_kisisel);
$Result1 = mysql_query($deleteSQL, $ok_kisisel) or die(mysql_error());
}

mysql_select_db($database_ok_kisisel, $ok_kisisel);
$query_blg = "SELECT * FROM blog";
$blg = mysql_query($query_blg, $ok_kisisel) or die(mysql_error());
$row_blg = mysql_fetch_assoc($blg);
$totalRows_blg = mysql_num_rows($blg);
?>



AdminCP

<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>
<script></script>














Blog KONULARIM


 









0) { // Show if recordset not empty ?>









BAŞLIK TARİH İÇERİK İŞLEMLER