Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Coding Forum


You are currently viewing our Coding Forum as a guest. Please register to participate.
Login



Reply
help creating random facts machine
Old 01-30-2010, 10:11 PM help creating random facts machine
Skilled Talker

Posts: 53
Trades: 0
Hey guys, I'm trying to create a sort of random fact machine, where every time a page gets refreshed a random fact appears. The random facts would be created by me. If anyone can just point me in the right direction it would be greatly appreciated. cheers.
worldy is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 01-31-2010, 01:13 AM Re: help creating random facts machine
VirtuosiMedia's Avatar
Web Design Made Simple

Posts: 1,228
Trades: 0
It depends on which language you're looking at using, but you would probably be looking to use an array-like structure.

For example, in PHP, you would do the following:

PHP Code:
<?php

$facts 
= array(
'Fact 1',
'Fact 2',
'Fact 3',
'Fact 4'
);

$randomNum array_rand($facts);

echo 
$facts[$randomNum];

?>
__________________
Want new web resources every day? - Follow me on
Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
VirtuosiMedia is offline
Reply With Quote
View Public Profile Visit VirtuosiMedia's homepage!
 
Reply     « Reply to help creating random facts machine
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 1.14493 seconds with 12 queries