Kyberia v2.0
[mirrors/Kyberia-bloodline.git] / inc / hypertext.inc
diff --git a/inc/hypertext.inc b/inc/hypertext.inc
deleted file mode 100644 (file)
index 19f08ed..0000000
+++ /dev/null
@@ -1,59 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-<?php
-include('kyberia.inc');
-class CLASS_HYPERTEXT extends CLASS_KYBERIA {
-
-
-function CLASS_HYPERTEXT() {
-       $this->CLASS_KYBERIA();
-}
-
-function explodeText($id) {
-       $set=$this->query("SELECT text1 from articles where id_article='$id'");
-       $set->next();
-       $text=$set->getstring("text1");
-       $text=str_replace("."," ",$text);
-       $text=str_replace(","," ",$text);
-       $text=str_replace("?"," ",$text);
-       $bomb=explode(" ",$text);
-       foreach ($bomb as $slovo) {
-               if (strlen($slovo)>4 AND !strstr($slovo,">") AND !strstr($slovo,"<"))$slova[]=$slovo;
-       }
-       echo "<table>";
-       foreach ($slova as $slovo) {
-               echo "<tr><Td>$id</td><Td>$slovo</td></tr>";
-       }
-}
-// >------------------------------koniec metod---------------<
-}
-?>
\ No newline at end of file
This page took 0.10962 seconds and 4 git commands to generate.