RaitisRR Posted October 4, 2006 Report Share Posted October 4, 2006 sveicinati , vershos pie jums ar jautajumu - vai ir kada iespeja uztaisit lai ar php tiktu nolasita lapas numeracija piem index.php?id=page3 < un pec ta lai php dotu lapai nosaukumu(brausera tolbara kur radas lapas vards piem ka te php.lv forumi) piem ja ir id=page1 tad lapa saucas Sākums ja id=page2 tad izklaide. tas vajadzigs lai nebutu katra lapa jaraksta - $title = "Sākums" ; un tt... ceru ka sapratat manu jautajumu un spesiet man palidzet.... Link to comment Share on other sites More sharing options...
goldy Posted October 4, 2006 Report Share Posted October 4, 2006 (edited) switch ( $_GET['$id'] ) { case 0: default: $title 'sākums'; break; case 1: $title 'nav sākums'; break; case 2: $title 'nu pavisam nav sākums'; break; } <title><?php echo $title ?></title> šādi Edited October 4, 2006 by goldy Link to comment Share on other sites More sharing options...
RaitisRR Posted October 4, 2006 Author Report Share Posted October 4, 2006 hmm itka taisi pec tava piemera bet met ara error - Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in atvainojos bet es esmu iesacejs tapec paraak nekritizeejiet ! Link to comment Share on other sites More sharing options...
RaitisRR Posted October 4, 2006 Author Report Share Posted October 4, 2006 Seit arii mans skripts <?php $id = $_GET['id']; switch($id) { default: case 'page': $title 'xxxx1'; include('index.inc'); break; case 'page3': $title 'xxxx2'; include('xxx2.inc'); break; case 'page4': $title 'xxxx3'; include('xxx3.inc'); break; } ?> Link to comment Share on other sites More sharing options...
andrisp Posted October 4, 2006 Report Share Posted October 4, 2006 (edited) goldy tev nepareizi ir iedevis kļūdainu skriptu: $title 'sākums'; vietā jābūt $title = 'sākums'; PS. Ja tev tie inkludojamie faili ir php skripti, tad noteikti neizmanto paplašinājumu .inc (ja nu vienīgi tu iekš apache konfigurācijas neesi norādījis lai ar php pārsē arī inc failus), tas ir tāds security treats. Bet vienalga labāk izmanto .php (kautvai .inc.php) paplašinājumu. Edited October 4, 2006 by andrisp Link to comment Share on other sites More sharing options...
Recommended Posts