Navigacija

Vartotojų tinkle

Prisijungusių svečių: 143
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,968
Naujausias narys: Loretukas222

Naujausi straipsniai

Paskutiniai nariai

Reikalas 2 savaitės
tanos 5 savaitės
LnKnPrK110 savaitės
inti12 savaitės
kileedyg19 savaitės
Kižas26 savaitės
Bruksnys27 savaitės
laleceylan5028 savaitės
minimukas29 savaitės
N-2031 savaitės
Rytis32 savaitės
DjArtas33 savaitės
WolfHammer33 savaitės
Nostesi43 savaitės
Wisedocs44 savaitės
asdasdddz47 savaitės
Paslapties K...48 savaitės
Audrius_1751 savaitės
Simbijanas63 savaitės
Karinacraft64 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 216.73.216.255
Naujienų: 529
Straipsnių: 235
Temų: 52,592
Postų: 522,552
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

LnKnPrK1
2026 Bir. 21 09:06:52
Sveiki, gal kas is administracijos gali parasyti man PM,aciu

minimukas
2026 Vas. 21 08:02:25
oi oi akinanti šypsen yra dar cia gyvu? akinanti šypsen

N-20
2026 Vas. 6 21:02:05
O mes dar gyvi šypsosi)

WolfHammer
2026 Sau. 25 01:01:35
drovus

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? šypsosi

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
Klaida kode
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Kiti PHP, HTML, MySQL klausimai

Autorius: Roksys Peržiūrų: 839      Spausdinti temą
2009 Vas. 24 20:02:20          1 žinutė iš 1
Spausdinti pranešimą
      <?
      /*****************************************************************
      * seoname.php
      * -------------------
      * This file is part of AMAZECS
      *
      * @package : amazecs
      * @purpose : URL re-write functions
      * @copyright : (C) 2004,2006 Len Johnson
      * @mail : GB WEBS, 4 Leominster Walk,
      * West Midlands, B45 9SW, UK
      * @support : http://www.web-bureau.com/forum/
      * @version : $Id: seoname.php,v 1.0.1 $
      * @license : http://opensource.org/licenses/g...icense.php
      *
      *****************************************************************/
      /*****************************************************************
      * GNU Public License
      * This program is free software; you can redistribute it and/or modify it
      * under the terms of the GNU General Public License as published by
      * the Free Software Foundation; either version 2 of the License,
      * or (at your option) any later version.
      *
      * This program is distributed in the hope that it will be useful,
      * but WITHOUT ANY WARRANTY; without even the implied warranty
      * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
      *****************************************************************/
      /**
      * CHANGELOG
      *
      * 26.06.06 added seonewsopts function
      */
       
      function seoname($seoit) {
      // $seoit = strip_tags($seoit);
      $seoit = str_replace('=',' ',$seoit);
      $seoit = str_replace('/',' ',$seoit);
      $seoit = str_replace('\\',' ',$seoit);
      $seoit = str_replace('@',' ',$seoit);
      $seoit = str_replace('~',' ',$seoit);
      $seoit = str_replace('!',' ',$seoit);
      $seoit = str_replace('£',' ',$seoit);
      $seoit = str_replace('?',' ',$seoit);
      $seoit = str_replace('!',' ',$seoit);
      $seoit = str_replace('$',' ',$seoit);
      $seoit = str_replace('%',' ',$seoit);
      $seoit = str_replace('^',' ',$seoit);
      $seoit = str_replace('*',' ',$seoit);
      $seoit = str_replace('_',' ',$seoit);
      $seoit = str_replace('{',' ',$seoit);
      $seoit = str_replace('}',' ',$seoit);
      $seoit = str_replace('[',' ',$seoit);
      $seoit = str_replace(']',' ',$seoit);
      $seoit = str_replace('-',' ',$seoit);
      $seoit = str_replace(' & ',' ',$seoit);
      $seoit = str_replace('"',' ',$seoit);
      $seoit = str_replace('.',' ',$seoit);
      $seoit = str_replace('\'',' ',$seoit);
      $seoit = str_replace(',',' ',$seoit);
      $seoit = str_replace(' ','-',$seoit);
      $seoit = str_replace(' ','-',$seoit);
      $seoit = str_replace(' ','-',$seoit);
      $seoit = str_replace(':','',$seoit);
      $seoit = str_replace('#','',$seoit);
      $seoit = str_replace('(','',$seoit);
      $seoit = str_replace(')','',$seoit);
      $seoit = str_replace('---','-',$seoit);
      $seoit = str_replace('--','-',$seoit);
      $seoit = str_replace('Ė','e',$seoit);
      $seoit = str_replace('a','ą',$seoit);
      $seoit = str_replace('c','č',$seoit);
      $seoit = str_replace('i','į',$seoit);
      $seoit = str_replace('z','ž',$seoit);
      $seoit = str_replace('u','ū',$seoit);
      $seoit = str_replace('u','ų',$seoit);
      $seoit = str_replace('e','ę',$seoit);
      $seoit = strtolower($seoit);
      return $seoit;
      }
       
      /*
      * modified newsopts function from
      * php fusion 6.01.2 by Nick Jones
      */
      function seonewsopts($info,$sep,$class="") {
      global $locale; $res = "";
      $link_class = $class ? " class='$class' " : "";
      if (!isset($_GET['readmore']) && $info['news_ext'] == "y") $res = "<a href='".seoname($info['news_subject'])."-rn".$info['news_id'].".htm'".$link_class.">".$locale['042']."</a> ".$sep." ";
      if ($info['news_allow_comments']) $res .= "<a href='".seoname($info['news_subject'])."-rn".$info['news_id'].".htm'".$link_class.">".$info['news_comments'].$locale['043']."</a> ".$sep." ";
      if ($info['news_ext'] == "y" || $info['news_allow_comments']) $res .= $info['news_reads'].$locale['044']."\n";
      $res .= $sep." <a href='print.php?type=N&amp;item_id=".$info['news_id']."'><img src='".THEME."images/printer.gif' alt='".$locale['045']."' style='vertical-align:middle;border:0px;'></a>\n";
      return $res;
      }
      ?>



Gal žinot kur čia klaidą padariau?

www.skanaus.eu
www.tut.lt
www.liaudiesmedicina.eu
Peršokti į forumą: