Medley
From "Hesitation:
Why the hesitation
God is ever waiting
Gotta stop procrastinating
Can you feel with me?
Why the hesitation?
You can pick your destination
The risk is so worth taking
Can you hear me?
From "Strong Enough":
Is He not strong enough?
Is He not pure enough?
To break me, pour me out and start again?
From "I Could be the One":
I could the one
Somedays I'm looking for, I don't have much to give
Lord I'm ready
And through You
I could the one
Oh this won't be new
I could hold onto what You say to me and I could the one
Источник: http://allstars.pp.ru
//Edited by Smith Вставка случайных ссылок на страницы
//Функция для генерации и вывода случайных строк из файла
//У функции есть ва входящих параметра - расположение файла и количество выводимых строк
//Например для вывода 5 случайных строк из файла, расположенного здесь: /var/www/allstars/data/www/allstars.pp.ru/randomfilms.txt
//Нужно написать в PHP коде: echo CreateRandomLinks('/var/www/allstars/data/www/allstars.pp.ru/randomfilms.txt',5);
//Функцию CreateRandomLinks нужно распологать вверху PHP файла.
/*Начало PHP кода функции*/
function CreateRandomLinks ($FileAdress, $NumberOfRandomLinks){
$y = 0;
unset($smith_random,$y,$count_random_links);
$smith_random = file($FileAdress);
$count_random_links = count($smith_random);
for ($y=0;$y<$NumberOfRandomLinks;$y++){
$result .= $smith_random[rand(0,$count_random_links-1)];
}
return $result;
}
/*Конец PHP кода функции*/
?>
Популярные сериалы:
echo CreateRandomLinks('/var/www/allstars/data/www/allstars.pp.ru/randomserials.txt',5);
?>
Популярные фильмы:
echo CreateRandomLinks('/var/www/allstars/data/www/allstars.pp.ru/randomfilms.txt',6);
?>
Популярные знаменитости:
echo CreateRandomLinks('/var/www/allstars/data/www/allstars.pp.ru/randomstars.txt',7);
?>