+ Reply to Thread
Results 1 to 3 of 3

Thread: Image change at every refresh

  1. #1
    Junior Member ShadowZ is on a distinguished road
    Join Date
    Nov 2009
    Location
    Romania-MuresCity
    Posts
    7
    Blog Entries
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default Image change at every refresh

    Can you please help me with and image change -that every refresh or page change the header image to change.
    Thankyou

  2. #2
    Administrator PHPCore has disabled reputation PHPCore's Avatar
    Join Date
    Oct 2009
    Location
    UK
    Age
    25
    Posts
    1,479
    Blog Entries
    2
    Thanks
    2
    Thanked 10 Times in 8 Posts
    Rep Power
    10

    Default

    Quote Originally Posted by ShadowZ View Post
    Can you please help me with and image change -that every refresh or page change the header image to change.
    Thankyou
    first of all you need to make a folder in your images folder, put name rotate_header, inside rotate_header put all your header images and put them fileame numbers: e.g 1.jpg, 2.jpg, 3.jpg, 4.jpg

    now here script to load random image on each refresh
    PHP Code:
    <?

    /*
    1 - start counting from 1 
    4 - counting will end on 4, if you have more images then 4 change
    */

    $random_image =  rand(14);

    /*print random image*/

    echo '<img src="images_folder/rotate_baner/'.$random_image.'.jpg">';
    ?>
    Have fun

  3. #3
    Junior Member ShadowZ is on a distinguished road
    Join Date
    Nov 2009
    Location
    Romania-MuresCity
    Posts
    7
    Blog Entries
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    thankyou for the script.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Replies: 3
    Last Post: 05-03-2010, 01:25 PM
  2. [Suggestions] Image Verification, Chat,Vault view etc...
    By Darkmax in forum MUCore Suggestions and Feedback
    Replies: 4
    Last Post: 11-22-2009, 06:01 PM
  3. World of Warcraft: Race Change Service Now Live!
    By PHPCore in forum MMORPG News
    Replies: 0
    Last Post: 10-29-2009, 04:23 PM

Tags for this Thread

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