View Single Post
ישן 28-11-08, 16:44   # 3
cjww
חבר חדש
 
מיני פרופיל
תאריך הצטרפות: Oct 2008
הודעות: 33

cjww לא מחובר  

ציטוט:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255" />
<?
include("includes/database.php");
include("includes/session.php");

$search = str_replace("'","",$search);
$search = str_replace("/","",$search);
$search = str_replace("-"," ",$search);
$search = str_replace("&","",$search);
$search = str_replace("?","",$search);
$search = str_replace(".","",$search);

if($_GET[type]=="lyrics") {
$div = "+";
} else {
$div = "-";
}


if(isset($_GET['changeurl'])){
header('Location: '.$web_path.'search/'.str_replace(' ',$div,$search).'/1/'.$type.'');
}


include("templates/header.php");
?>

</head>

<?php
if (!isset($_GET[search]) OR $_GET[search] == "") {

include("templates/layout_home.php");
}else{
include("templates/layout_main.php");
}

include("templates/footer.php");
?>

זה הקוד של האינדקס
__________________


קרדיט לי על הסוסה למעלה =]

Last edited by cjww; 28-11-08 at 16:49..
  Reply With Quote