+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 20

Thread: Desktop Wallpapers

  1. #1
    Administrator GumSlone has disabled reputation GumSlone's Avatar
    Join Date
    Mar 2005
    Posts
    1,083
    Thanks
    40
    Thanked 133 Times in 60 Posts
    Blog Entries
    2
    Rep Power
    10

    Default

    Add here some desktop wallpapers
    Attached Images
    coding-talk.com - a place where noobs become professionals

    Advertise your mobile site for FREE with




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

    Default

    my personal background
    Attached Images
    8th wonder of the world

  3. #3
    Senior Member wapkralj
    Join Date
    Feb 2006
    Location
    Mostar, Bosnia and Herzegovina,
    Posts
    310
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Rep Power
    0

    Default

    here are some
    Attached Images

  4. #4
    Senior Member stretch
    Join Date
    Feb 2006
    Location
    South Africa
    Posts
    216
    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 Images
    = = = = =
    The more you laugh...the longer you live.
    Read more jokes at

  5. #5
    Administrator GumSlone has disabled reputation GumSlone's Avatar
    Join Date
    Mar 2005
    Posts
    1,083
    Thanks
    40
    Thanked 133 Times in 60 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
    coding-talk.com - a place where noobs become professionals

    Advertise your mobile site for FREE with




  6. #6
    Super Moderator subzero is an unknown quantity at this point subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    2,828
    Thanks
    76
    Thanked 75 Times in 39 Posts
    Blog Entries
    2
    Rep Power
    0

    Default

    upload them at my site all is need i or make uploader let you upload max lol




    Super Cheap hosting:
    Read Tearms&Conditions here:
    FAQ:
    Support forum:


    WapMasterz.Net is back with new forum style!!
    Click this image to goto wapmasterz site!



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

    Default

    i will upload them on my site at



    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

  8. #8
    naveen-PHP LEARNER
    Guest

    Default

    Thanks guys.

  9. #9
    Super Moderator subzero is an unknown quantity at this point subzero's Avatar
    Join Date
    Mar 2006
    Location
    Your Screen.
    Posts
    2,828
    Thanks
    76
    Thanked 75 Times in 39 Posts
    Blog Entries
    2
    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>
    




    it cool but all the time it big to have smiles lmao




    Super Cheap hosting:
    Read Tearms&Conditions here:
    FAQ:
    Support forum:


    WapMasterz.Net is back with new forum style!!
    Click this image to goto wapmasterz site!



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

    Default

    thanks naveen, thanks sub.

    go check out 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

+ Reply to Thread
Page 1 of 2 1 2 LastLast

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. Wallpapers for your mobile!
    By GumSlone in forum Ringtones, Games, Themes, Wallpapers, Videos.
    Replies: 13
    Last Post: 27-03-10, 05:42
  2. Showoff Your Desktop: Warning: Dial up users
    By subzero in forum Trash forum
    Replies: 16
    Last Post: 06-06-09, 06:12
  3. Pc Desktop Wars
    By WhiteWarrior in forum Software
    Replies: 4
    Last Post: 26-10-08, 23:00
  4. Cool WallPapers Backgrounds
    By GumSlone in forum Ringtones, Games, Themes, Wallpapers, Videos.
    Replies: 2
    Last Post: 09-10-05, 19:16
  5. Hot wallpapers
    By dhirajdixit in forum Ringtones, Games, Themes, Wallpapers, Videos.
    Replies: 2
    Last Post: 12-08-05, 12:16

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