Greenguy's Board


Go Back   Greenguy's Board > Programming & Scripting
Register FAQ Calendar Today's Posts

Reply
 
Thread Tools Search this Thread Rate Thread Display Modes
Old 2023-09-14, 08:57 PM   #1
jollyhumper
That's what she said
 
jollyhumper's Avatar
 
Join Date: Feb 2012
Location: Norway
Posts: 2,626
Send a message via ICQ to jollyhumper
Quote:
Originally Posted by HowlingWulf View Post
Here you go. Just work off this.

Code:
<?php
$todayfile = date("d-m-y") . ".txt";            // 14-05-14 = 14th of May, 2014
$text = @file_get_contents($todayfile);
echo $text;
?>
I've messed around with this one, but I can't make it work.
What I want it to do:
Let's say I have 3 files named:
01.txt
02.txt
03.txt

Can I make php pull one of them by random?

J
jollyhumper is offline   Reply With Quote
Old 2023-09-15, 05:54 AM   #2
Greenguy
The Original Greenguy (Est'd 1996) & AVN HOF Member - I Crop Pics For Thumbs In My Sleep
 
Greenguy's Avatar
 
Join Date: Feb 2003
Location: Blasdell, NY (shithole suburb south of Buffalo)
Posts: 41,929
Send a message via ICQ to Greenguy
Quote:
Originally Posted by jollyhumper View Post
I've messed around with this one, but I can't make it work.
What I want it to do:
Let's say I have 3 files named:
01.txt
02.txt
03.txt

Can I make php pull one of them by random?

J
I KNOW THIS!!!

Create a text file with what you want pulled randomly - for example:
https://www.link-o-rama.com/greenguy...nks-header.txt
(simple banner rotator)

Make sure there is no extra empty line or return at the end.

Then put this coding on your page:

Code:
<?php
$file = "/home/greenguy/domains/link-o-rama.com/public_html/greenguy/includes/mlinks-header.txt";
$banners = file($file);
srand((float) microtime() * 1235689);
$selected = array_rand($banners);
$SelBanner = trim($banners[$selected]);
if ($SelBanner=="") {
$SelBanner = trim($banners[0]);
};
echo $SelBanner;
?>
Change /home/greenguy/domains/link-o-rama.com/public_html/greenguy/includes/mlinks-header.txt to the location on your server.

That's running the top banner on here.

(thank you cd34)
__________________

Promote POV Porn Cash By Building & Submitting Galleries to the Porn Luv Network
Greenguy is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:26 PM.


Mark Read
Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc