Jump to content
php.lv forumi

title lapai ar php


_Matwey_

Recommended Posts

Sveiki!

Man ir problēmas ar title un description nomaiņu atkarībā kura lapa ir ielādēta! man ir menu ir piecas sadaļas (sākums, par kompāniju, produkcija utt.) un kkā ar if (vai kāds jūsu variants) nomainās title un description!

piemēram kkas tamlīdzīgs, nezinu ar ko lai sāk, jo nevaru likt javascript un neatradu tieši man saprotamu variantu googlē meklēju šadi-"change title php tutorial"

<? if ($page='index.php'){
$title='index';
}?>
<title><?php echo "$title"?></title>

Edited by _Matwey_
Link to comment
Share on other sites

Nu bet lukur tu jau pats risinājumu iekopēji. Kas nav skaidrs ?

nesrādā, ja ir

if ($page='index.php'){
$title='index';
}

if ($page='galerija.php'){
$title='galerija';
}

tad visur rādās pēdājais title, šajā gadījumā - galerija

Link to comment
Share on other sites

$title = 'nokluseetaais title';

if ($page=='index.php'){

$title='index';

}

elseif ($page=='galerija.php'){

$title='galerija';

};

 

 

varētu jau piedāvāt ar switch to visu rakstīt, bet nu labi...

Edited by Val
Link to comment
Share on other sites

peec } ieliec semikolu (laikam taa)

 

$title = 'nokluseetaais title';

if ($page=='index.php'){

$title='index';

};

elseif ($page='galerija.php'){

$title='galerija';

};

 

 

 

 

 

 

Iet vai neiet?

Edited by RaaapuLis
Link to comment
Share on other sites

peec } ieliec semikolu (laikam taa)

 

$title = 'nokluseetaais title';

if ($page=='index.php'){

$title='index';

};

elseif ($page='galerija.php'){

$title='galerija';

};

 

 

 

 

 

 

Iet vai neiet?

diemžēl visur rādās galerija :(

kkā jānodefinā kas ir $page, vai php saprot to ka $page ir ielādētā lapa?

Link to comment
Share on other sites

varbūt parādi index.php saturu?

no probs

begin.php

<?php

$title = 'nokluseetaais title';
if ($page=='index.php'){
$title='index';
}
elseif ($page='galerija.php'){
$title='galerija';
};
?>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="">
<meta name="keywords" content="">
<LINK REL="SHORTCUT ICON" HREF="logo.ico">
<title> <?php echo "$title" ?></title>
<link href="style.css" rel="stylesheet" type="text/css" />


<style type="text/css">
<!--
BODY {


}
-->
</style>
</head>

<body bgcolor="#ebebeb">

<table cellpadding="0" cellspacing="0" id="wra" width="100%" border=0>
	<tr>
		<td class="left"> 
		</td>
		<td class="table">
		<div class="logo"></div>
		<div class="par_mums"><table align="center"><tr><td align="center" valign="middle" width="135px" height="34px"> <a class="button" onmouseover="this.className='buttonON'" onmouseout="this.className='button'" href="index.php">par mums</a></td></tr></table></div>
		<div class="par_mebelem"><table align="center"><tr><td align="center" valign="middle" width="135px" height="34px"> <a class="button" onmouseover="this.className='buttonON'" onmouseout="this.className='button'" href="par_mebelem.php">par mebelēm</a></td></tr></table></div>
		<div class="gelerija"><table align="center"><tr><td align="center" valign="middle" width="135px" height="34px"> <a class="button" onmouseover="this.className='buttonON'" onmouseout="this.className='button'" href="galerija.php">galerija</a></td></tr></table></div>
		<div class="kontakti"><table align="center"><tr><td align="center" valign="middle" width="135px" height="34px"> <a class="button" onmouseover="this.className='buttonON'" onmouseout="this.className='button'" href="kontakti.php">kontakti</a></td></tr></table></div>
		<div class="atsauksmem"><table align="center"><tr><td align="center" valign="middle" width="135px" height="34px"> <a class="button" onmouseover="this.className='buttonON'" onmouseout="this.className='button'" href="guestbook.php">atsauksmēm</a></td></tr></table></div>

index.php

<? include('begin.php');
?>


<div class="virsraksts"><table><tr><td class="vtext">Par mums
				</td>
		   blablabla
</td>

<? include('bottom.php');
?>

Edited by _Matwey_
Link to comment
Share on other sites

×
×
  • Create New...