Results 1 to 2 of 2

Thread: A random content generator onload

  1. #1
    Join Date
    Mar 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default A random content generator onload

    Sorry looking for this old thing, I know I must learn, in crunch now.
    Hope to start learning soon.

    I want to display or include content, on a splash page from a list
    (not in li) of content groups. One of a number of html groups
    with imgs in anchors and maybe even some accompanying text.

    Anybody got any ideas?


    Thanks a lot, N!

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    you want to randomly load one of several different content blocks? Or you want to generate random content ("filler" material)?

    Random selection of content is easy:
    PHP Code:
    <?php

    $randContent 
    array_rand('content1.htm''content2.htm''content3.htm');
    include(
    $randContent);

    ?>
    this assumes you're loading external content; the content could also be directly in the array, in a database entry, stored in a variable, etc.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •