короче, прописал этот код
<?
$str = file_get_contents('../data/vippersons.dat');
$ex = explode('1',$str);
$c=sizeof($ex)-1;
$rand = mt_rand(0,$c);
echo $ex[$rand];
?>
в файле includes/vipersons.php, вот результат:
Resultate, и проинклудил в newfile.php:
Resultate, а вот и код файла newfile.php
<?php
require_once ('../includes/start.php');
require_once ('../includes/functions.php');
require_once ('../includes/header.php');
include_once ('../themes/'.$config['themes'].'/index.php');
show_title ('site.png','Тестовая страничка');
$config['newtitle'] = "Тестовая страничка";
include_once ('includes/vippersons.php');
include_once ('../themes/'.$config['themes'].'/foot.php');
?>
че к чему
Изменил: Виталий (04.11.2010 / 08:55)