• Archives

  • AddThis Social Bookmark Button

    Add to Technorati Favorites

  • Upcoming Conferences

    • no upcoming events
  • Archive for January, 2008

    A ringtone that can only be heard by teenagers

    Friday, January 4th, 2008

    Receiving sms and calls in classes has became easier there are ringtones available which can only be heard by teenagers we call this phenomenon “presbycusis”. This phenomenon is based on our losing ability to hear higher frequency sounds. The high pitch is 18 to 20 khz. So enjoy !!! now don’t ever make your phone silent in class room the ringtone will only be heard by the young ones not your teacher or elders

    To download an example ringtone click here below

    http://www.jetcityorange.com/mosquito-ringtone/

    Thanks
    krates

    Share and Enjoy:
    • Digg
    • del.icio.us
    • Facebook
    • NewsVine
    • Reddit
    • StumbleUpon
    • YahooMyWeb
    • Google Bookmarks
    • Yahoo! Buzz
    • TwitThis
    • Live
    • LinkedIn
    • Pownce
    • MySpace

    Free alternative’s to winrar

    Wednesday, January 2nd, 2008

    There are many alternative available for winrar even website’s are being made to zip files some of the common compressor links are given below you may utilize them like

    7zip

    zipper

    Freezip

    m9P Zipper XT

    Power zip

    ZipGiz

    winzix

    Thanks

    krates

    Share and Enjoy:
    • Digg
    • del.icio.us
    • Facebook
    • NewsVine
    • Reddit
    • StumbleUpon
    • YahooMyWeb
    • Google Bookmarks
    • Yahoo! Buzz
    • TwitThis
    • Live
    • LinkedIn
    • Pownce
    • MySpace

    Displaying random advertisement through php

    Tuesday, January 1st, 2008

     

    Sometimes you want to display something randomlythis tutorial is going to teach how to display two company advertisement on the same page like google and bidvertiser.

    Syntax:

    <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
    <html xmlns=”http://www.w3.org/1999/xhtml”>
    <head>
    <meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
    <title>Untitled Document</title>
    </head>
    <body>
    <?php
    $a = rand (1,2);
    if ($a == “1″) {
    ?>
    <script type=”text/javascript”>
    <!–
    google_ad_client = “”;
    //728×90, created 12/31/07
    google_ad_slot = “1167745697″;
    google_ad_width = 728;
    google_ad_height = 90;
    //–>
    </script>
    <script type=”text/javascript”
    src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
    </script>
    <?php
    }
    if ($a == “2″) {
    ?>
    <!– Begin BidVertiser code –>
    <SCRIPT LANGUAGE=”JavaScript1.1″ src=”http://bdv.bidvertiser.com/BidVertiser.dbm?pid=&bid=” type=”text/javascript”></SCRIPT>
    <noscript><a href=”http://www.bidvertiser.com/bdv/BidVertiser/bdv_advertiser.dbm”>pay per click</a></noscript>
    <!– End BidVertiser code –>
    <?php

    }

    ?>
    </body>
    </html>

    You must have understand now that we assign a randomly between 1 and 2 and then check if a = 1 then display google advertisement and if a = 2 then display bidvertiser advertisement.

    Thanks

    krates

    Share and Enjoy:
    • Digg
    • del.icio.us
    • Facebook
    • NewsVine
    • Reddit
    • StumbleUpon
    • YahooMyWeb
    • Google Bookmarks
    • Yahoo! Buzz
    • TwitThis
    • Live
    • LinkedIn
    • Pownce
    • MySpace