• Archives

  • AddThis Social Bookmark Button

    Add to Technorati Favorites

  • Upcoming Conferences

    • no upcoming events
  • Archive for May, 2008

    Wondershare Photo Story

    Tuesday, May 27th, 2008

    Wondershare Photo Story is an innovative also easy-to-use photo album software that brings your digital photos to life. You can easily create photo album by using a variety of stylish preset templates. Simply add your photos, choose the templates, add some decorations, intro/end cast movie, then share your photo story with your family and friends.

    • Only drag-n-drop and some mouse clicks to create photo albums;
    • Bring photos to life with stunning animated designs – a wide variety of ready-to-use templates;
    • Specially offered templates, such as weddings and celebrations available on Website;
    • Choose from various Flash Intro/End movies;
    • Add your background music, caption texts, cliparts and special effects;
    • Share your album with your family and friends on the Internet.

    Today you can download this software freely at

    http://www.giveawayoftheday.com/wondershare-photo-story-nr/

    And after wards buy from here

    http://www.ourpix.com/

    Thanks

    krates

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

    Php error handling

    Tuesday, May 27th, 2008

    Sometimes we need to set our own errors rather than the default one like this.

    Warning: fopen(test.txt) [function.fopen]: failed to open stream: No such file or directory in http://localhost/index.php on line 2

    it is good when you create scripts and sell

    Creating a basic error handler using the die function !!

    if(!file_exists(“text.txt”))
    {
    die(“File does not exist”);
    }
    else
    {
    $file=fopen(“text.txt”,”r”);
    }
    ?>

    Set error handler

    Error handlers are set using

    set_error_handler(“MyErrors”);

    Syntax:

    <?php

    function myerror($var1, $var2)
    {
    echo “<b>Error:</b> [$var1] $var2″;
    }

    set_error_handler(“myerror”);

    echo($var);
    ?>

    Error will be

    Error: [8] Undefined variable: var

    Thanks

    krates

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

    N82 black my dream phone

    Friday, May 23rd, 2008

    This phone is really ausumn and this is going to be my next phone. I can’t control my feelings about this phone so i am blogging about this phone in my blog. This phone is looking more sexier in its black dress

    Current price tag is 19500 rs

    Chief Features

    • 5 mp camera – Auto Focus, Carl Zeiss Optics, Flash, Red-Eye Reduction, Self Timer
    • Audio Formats - AAC / AAC+ / eAAC+ / MP3 / MP4 / M4A / WMA / AMR / XMF / WB-AMR / NB-AMR / Real Audio
    • Operating System Symbian / S60 Symbian OS 9.2
    • GPS
    • Surround sound

    These are the features that got me intrested in this phone

    The price is just right for a phone having that many features

    Link to N82

    thanks

    krates

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

    Return the length of a string

    Wednesday, May 21st, 2008

    Sometimes you need to get the length in numbers of a string

    you can easily do it by using javascript

    Syntax:

    <html>
    <body>
    <script type=”text/javascript”>
    var text=”Count me!”;
    document.write(text.length);
    </script>
    </body>
    </html>

    Thanks

    krates

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

    Knowing the screen resolution of the client window

    Tuesday, May 20th, 2008

    Sometimes or many times we need to know the screen resolution of the client window to create webpages according to there resolution !!!

    Syntax:

    <html>
    <body>
    <script type=”text/javascript”>
    document.write(“Screen resolution: “);
    document.write(screen.width + “*” + screen.height);
    document.write(“<br />”);
    document.write(“Available view area: “);
    document.write(screen.availWidth + “*” + screen.availHeight);
    </script>
    </body>
    </html>

    so it is that easy

    thanks

    krates

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