Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Desktop Wallpapers

  1. #1
    Administrator GumSlone's Avatar
    Join Date
    Mar 2005
    Location
    Mars, GumCity
    Posts
    1,505
    Thanks
    125
    Thanked 577 Times in 203 Posts
    Blog Entries
    2
    Rep Power
    10

    Default

    Add here some desktop wallpapers
    Attached Thumbnails Attached Thumbnails 3D_56.jpg   6.jpg   15_06_06_FIFA_World_Cup_Unofficial_Wall.jpg   2005_12_14_ABTOMATbI.jpg   2006_01_21_Murder_On_The_Dancefloor.jpg  

    Advertise your mobile site for FREE with [Only registered and activated users can see links. Click Here To Register...]

    [Only registered and activated users can see links. Click Here To Register...]


  2. #2
    Senior Member
    Join Date
    May 2006
    Location
    South Africa
    Posts
    156
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    my personal background
    Attached Thumbnails Attached Thumbnails zzz.jpg  
    8th wonder of the world

  3. #3
    Senior Member
    Join Date
    Feb 2006
    Posts
    238
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Default

    here are some
    Attached Thumbnails Attached Thumbnails misc01.jpg   misc02.jpg   misc12.jpg  

  4. #4
    Senior Member
    Join Date
    Feb 2006
    Location
    South Africa
    Posts
    132
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Default

    Here are some i have, i cant upload all cause GumSlone will not like if i upload 75.5MB of wallpapers.

    will upload the rest during the week and post the upload link here
    Attached Thumbnails Attached Thumbnails FIL1779.JPG   FIL1835.JPG   FIL1860.JPG   FIL1872.JPG   FIL1873.JPG  

    FIL1875.JPG   FIL1917.JPG   FIL1971.JPG   FIL1863.JPG  
    = = = = =
    The more you laugh...the longer you live.
    Read more jokes at
    [Only registered and activated users can see links. Click Here To Register...]

  5. #5
    Administrator GumSlone's Avatar
    Join Date
    Mar 2005
    Location
    Mars, GumCity
    Posts
    1,505
    Thanks
    125
    Thanked 577 Times in 203 Posts
    Blog Entries
    2
    Rep Power
    10

    Default

    Here are some i have, i cant upload all cause GumSlone will not like if i upload 75.5MB of wallpapers.

    will upload the rest during the week and post the upload link here[/b]
    Yes 75MB is a bit to much, but you can upload best of them or upload them to rapidshare.de
    Advertise your mobile site for FREE with [Only registered and activated users can see links. Click Here To Register...]

    [Only registered and activated users can see links. Click Here To Register...]


  6. #6
    Super Moderator subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    3,973
    Thanks
    442
    Thanked 380 Times in 181 Posts
    Blog Entries
    7
    Rep Power
    0

    Default

    upload them at my site all is need i or make uploader let you upload max lol
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

  7. #7
    Senior Member
    Join Date
    Feb 2006
    Location
    South Africa
    Posts
    132
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Default

    i will upload them on my site at

    [Only registered and activated users can see links. Click Here To Register...]

    i have changed the wapbuddy script so you can go there with the pc.

    can one of you help me to put a preview code in the wapbuddy script so it shows a preview of the wallpaper and not just the file name?

    i think the code must be something like this but i am not sure and are definatly not sure where to put it in the index.php file.

    [img]$file_name[/img]
    = = = = =
    The more you laugh...the longer you live.
    Read more jokes at
    [Only registered and activated users can see links. Click Here To Register...]

  8. #8
    naveen-PHP LEARNER
    Guest

    Default

    Thanks guys.

  9. #9
    Super Moderator subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    3,973
    Thanks
    442
    Thanked 380 Times in 181 Posts
    Blog Entries
    7
    Rep Power
    0

    Talking

    Code:
    <?
    echo "<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">"; 
    
    include("../wapbuddy_settings.php");
    if (!isset($page)) {$page = 0;}
    $total = 0;
    
    if(!($dp = opendir("./"))) die ("Cannot open ./");
    $file_array = array(); 
    while ($file = readdir ($dp))
        {
        if(substr($file,0,1) != &#39;.&#39; and $file != "index.php")
            {
            $file_array[] =  $file;
            }
        }
    $file_count = count ($file_array);
    sort ($file_array);
    ?> 
    <wml> 
    <card id="card1" title="<? echo $conf["site_name"] ?>"> 
        <p mode="nowrap">
            <do type="option" label="Home"><go href="../index.php"/></do>
            <? echo "<a href=\"../index.php\">Home</a>
    
    "; ?>
            <?
            
            if ($file_count > 0)
                {
                $first_record = $page * $conf["items_per_page"];
                $last_record = $first_record + $conf["items_per_page"];
                
                while (list($fileIndexValue, $file_name) = each ($file_array))
                    {
                    
                    if (($fileIndexValue >= $first_record) AND ($fileIndexValue < $last_record))
                        {
                
                        echo "<img src=\"$file_name\" height=\"250\" width=\"250\" alt=\"$file_name\"/>
    
    <a href=\"$file_name\">$file_name</a> (". round(filesize($file_name)/1024,1) . "kb)
    ";
                        $total = $total + filesize($file_name);
                        }
                    }
                
                if (($file_count > 0) AND ($page != 0))
                    {
                    // previous button
                    $prev_page = $page -1;
                    echo "
    <a href=\"".$_SERVER["PHP_SELF"]."?page=$prev_page\">Prev</a>
    ";
                    }
                
                
                if (($file_count > 0) AND ($last_record < $file_count))
                    {
                    // next button
                    $next_page = $page + 1;
                    echo "
    <a href=\"".$_SERVER["PHP_SELF"]."?page=$next_page\">Next</a>
    ";
                    }
                echo "
    Directory:
    $file_count ";
                if ($file_count == 1)
                    {echo "file";}
                else
                    {echo "files";}
                    
                echo " (" . round($total/1024,1) . "kb)";
                echo "
    <a href=\"../index.php\">Home</a>";
                }
            closedir($dp);
            ?>
            
        </p>
    </card> 
    </wml>

    [Only registered and activated users can see links. Click Here To Register...]


    it cool but all the time it big to have smiles lmao
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    Visit: [Only registered and activated users can see links. Click Here To Register...]
    _______
    SCRIPTS FOR SALE BY SUBZERO
    Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
    FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
    _______
    Info & Tips
    php.net
    w3schools.com

  10. #10
    Senior Member
    Join Date
    Feb 2006
    Location
    South Africa
    Posts
    132
    Thanks
    0
    Thanked 1 Time in 1 Post
    Rep Power
    0

    Default

    thanks naveen, thanks sub.

    go check out [Only registered and activated users can see links. Click Here To Register...] for more of my collection of over 500 desktop wallpapers.

    the preview are working so dont worry Gum i will not overload the forum
    = = = = =
    The more you laugh...the longer you live.
    Read more jokes at
    [Only registered and activated users can see links. Click Here To Register...]

Page 1 of 2 12 LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Showoff Your Desktop: Warning: Dial up users
    By subzero in forum Trash forum
    Replies: 16
    Last Post: 06-06-09, 06:12

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
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19