Aldığım hata aynen şöyle
Alıntı
9
●1.694
<?php
function temizle($url)
{
$url = trim($url);
$find = array('<b>', '</b>');
$url = str_replace ($find, '', $url);
$url = preg_replace('/<(\/{0,1})img(.*?)(\/{0,1})\>/', 'image', $url);
$find = array(' ', '&quot;', '&amp;', '&', '\r\n', '\n', '/', '\\', '+', '<', '>');
$url = str_replace ($find, '-', $url);
$find = array('.','..', '...');
$url = str_replace ($find, '', $url);
$find = array('é', 'è', 'ë', 'ê', 'É', 'È', 'Ë', 'Ê');
$url = str_replace ($find, 'e', $url);
$find = array('í', 'ý', 'ì', 'î', 'ï', 'I', 'Ý', 'Í', 'Ì', 'Î', 'Ï','İ','ı');
$url = str_replace ($find, 'i', $url);
$find = array('ó', 'ö', 'Ö', 'ò', 'ô', 'Ó', 'Ò', 'Ô');
$url = str_replace ($find, 'o', $url);
$find = array('á', 'ä', 'â', 'à', 'â', 'Ä', 'Â', 'Á', 'À', 'Â');
$url = str_replace ($find, 'a', $url);
$find = array('ú', 'ü', 'Ü', 'ù', 'û', 'Ú', 'Ù', 'Û');
$url = str_replace ($find, 'u', $url);
$find = array('ç', 'Ç');
$url = str_replace ($find, 'c', $url);
$find = array('þ', 'Þ','ş','Ş');
$url = str_replace ($find, 's', $url);
$find = array('ð', 'Ð','ğ','Ğ');
$url = str_replace ($find, 'g', $url);
$find = array('/[^A-Za-z0-9\-<>]/', '/[\-]+/', '/<[^>]*>/');
$repl = array('', '-', '');
$url = preg_replace ($find, $repl, $url);
$url = str_replace ('--', '-', $url);
$url = strtolower($url);
return $url;
}
if(isset($_POST['gonder'])){
$baslik = $_POST['baslik'];
$icerik = $_POST['icerik'];
$resimyolu = $_POST['resimyolu'];
$manset = $_POST['manset'];
$url=temizle($baslik);
if($baslik==""||$icerik==""||$resimyolu==""){
echo '<div class="error msg" style="width:300px;">Alanları boş geçemezsiniz!</div>'; }else{
mysql_query("SET NAMES 'utf8'");
mysql_query("SET CHARACTER SET utf8");
mysql_query("SET COLLATION_CONNECTION = 'utf8_bin'");
$mysql="UPDATE news SET baslik='$baslik',icerik='$icerik',resimyolu='$resimyolu',manset='$manset',sefurl='$url' where id='$id'";
$sorgu12 = mysql_query($mysql) or trigger_error(mysql_error(),E_USER_ERROR);
echo " <div class='done msg' style='width:200px;'>
<b>Düzenleme Kaydedildi!</b>
</div>";
} }
?> <?php
function temizle($url)
{
$url = trim($url);
$find = array('<b>', '</b>');
$url = str_replace ($find, '', $url);
$url = preg_replace('/<(\/{0,1})img(.*?)(\/{0,1})\>/', 'image', $url);
$find = array(' ', '&quot;', '&amp;', '&', '\r\n', '\n', '/', '\\', '+', '<', '>');
$url = str_replace ($find, '-', $url);
$find = array('.','..', '...');
$url = str_replace ($find, '', $url);
$find = array('é', 'è', 'ë', 'ê', 'É', 'È', 'Ë', 'Ê');
$url = str_replace ($find, 'e', $url);
$find = array('í', 'ý', 'ì', 'î', 'ï', 'I', 'Ý', 'Í', 'Ì', 'Î', 'Ï','İ','ı');
$url = str_replace ($find, 'i', $url);
$find = array('ó', 'ö', 'Ö', 'ò', 'ô', 'Ó', 'Ò', 'Ô');
$url = str_replace ($find, 'o', $url);
$find = array('á', 'ä', 'â', 'à', 'â', 'Ä', 'Â', 'Á', 'À', 'Â');
$url = str_replace ($find, 'a', $url);
$find = array('ú', 'ü', 'Ü', 'ù', 'û', 'Ú', 'Ù', 'Û');
$url = str_replace ($find, 'u', $url);
$find = array('ç', 'Ç');
$url = str_replace ($find, 'c', $url);
$find = array('þ', 'Þ','ş','Ş');
$url = str_replace ($find, 's', $url);
$find = array('ð', 'Ð','ğ','Ğ');
$url = str_replace ($find, 'g', $url);
$find = array('/[^A-Za-z0-9\-<>]/', '/[\-]+/', '/<[^>]*>/');
$repl = array('', '-', '');
$url = preg_replace ($find, $repl, $url);
$url = str_replace ('--', '-', $url);
$url = strtolower($url);
return $url;
}
if(isset($_POST['gonder'])){
$baslik = $_POST['baslik'];
$icerik = $_POST['icerik'];
$resimyolu = $_POST['resimyolu'];
$manset = $_POST['manset'];
$url=temizle($baslik);
if($baslik==""||$icerik==""||$resimyolu==""){
echo '<div class="error msg" style="width:300px;">Alanları boş geçemezsiniz!</div>'; }else{
mysql_query("SET NAMES 'utf8'");
mysql_query("SET CHARACTER SET utf8");
mysql_query("SET COLLATION_CONNECTION = 'utf8_bin'");
$baslik = mysql_real_escape_string($baslik);
$icerik = mysql_real_escape_string($icerik);
$resimyolu = mysql_real_escape_string($resimyolu);
$manset = mysql_real_escape_string($manset);
$url = mysql_real_escape_string($url);
$id = mysql_real_escape_string($id);
$mysql="UPDATE news SET baslik='$baslik',icerik='$icerik',resimyolu='$resimyolu',manset='$manset',sefurl='$url' where id='$id'";
$sorgu12 = mysql_query($mysql) or trigger_error(mysql_error(),E_USER_ERROR);
echo " <div class='done msg' style='width:200px;'>
<b>Düzenleme Kaydedildi!</b>
</div>";
} }
?> <div class="box">
<h2>Videolar</h2>
<ul class="line">
<?php $as3d = mysql_query("select * from videash order by id desc limit 0,3"); if(mysql_num_rows($as3d)!="0"){ while($bc3d = mysql_fetch_array($as3d)){ ?>
<li>
<?php if($print['seourl']==".php"){ ?>
<a class="frm" href="video.php?url=<?php echo $bc3d['sefurl']; ?>"><img src="<?php echo $bc3d['resimyolu']; ?>" alt="" width="180" height="135" /></a>
<a href="video.php?url=<?php echo $bc3d['sefurl']; ?>"><?php echo $bc3d['baslik']; ?></a>
<?php }elseif($print['seourl']==".html"){ ?>
<a class="frm" href="video-<?php echo $bc3d['sefurl']; ?>.html"><img src="<?php echo $bc3d['resimyolu']; ?>" alt="" width="180" height="135" /></a>
<a href="video-<?php echo $bc3d['sefurl']; ?>.html"><?php echo $bc3d['baslik']; ?></a>
<?php } ?>
</li>
<?php } }else{ echo '<li>Henüz bir video eklenmemiş.</li>'; } ?>
</ul>
<div class="cl"> </div>
</div>