Rss Feed
  1. PHP to know

    Tuesday 22 January 2013

    To redirect to previous page

    header('Location: ' . $_SERVER['HTTP_REFERER']);


  2. Website design tool and links

    Monday 21 January 2013


    http://twitter.github.com/bootstrap/

    http://www.webdesignerdepot.com/category/code/



    Collection of HTML, CSS and JQUERY

    http://jqueryexample.com/

    http://www.htmldrive.net

    http://www.dynamicdrive.com/

    http://jqueryui.com/

    http://www.jacklmoore.com

    http://webdesignledger.com/tools/10-jquery-plugins-that-will-make-your-life-easier

  3. Applications!!

    Friday 11 January 2013

    To adjust monitor screen brightness automatically based on sunset

    stereopsis.com/flux/


  4. Images Collections!!

    Thursday 10 January 2013

    Image collections

    http://www.vectorstock.com
    http://depositphotos.com
    www.shutterstock.com



  5. Tips on internet

    http://www.labnol.org

    Irctc easy ticket booking using magic  autofill

    http://ctrlq.org/irctc/


  6. Common Colors and Their Most Common Meanings

    • Red: energy, passion, excitement, power; also implies aggression, danger.
    • Blue: coolness, spirituality, freedom, patience, loyalty, peace, trustworthiness; can also imply sadness, depression.
    • Yellow: light, optimism, happiness, brightness, joy.
    • Green: life, naturalness, restfulness, health, wealth, prosperity; in certain contexts, can imply decay, toxicity.
    • Orange: friendliness, warmth, approachability, energy, playfulness, courage.
    • Violet: wisdom, sophistication, celebration.
    • White: purity, cleanliness, youth, freshness, peace.
    • Black: power, elegance, secrecy, mystery.
    • Gray: security, maturity, reliability.
    • Pink: romance a feminine color.
    • Brown: comfort, strength, stability, credibility.
    From a psychological point of view, I suggest reading Color Psychology in Online Marketing, an article by Al Martinovic.

    Reference for color  scheme and tool:

    http://www.avangate.com/community/resources/article/color-web-site.htm

    http://www.gpeters.com/color/color-schemes.php?search_term=Yellow

    http://www.colorsontheweb.com/colorwizard.asp

    http://designshack.net/articles/html/7-great-tools-to-help-you-build-your-own-html5-forms/

    http://designshack.net/articles/inspiration/25-awesome-tools-for-choosing-a-website-color-scheme/

    http://designshack.net/category/articles/html/

    Icons for websites

    http://www.iconfinder.com

    http://www.iconshock.com/


    Html design and development

    http://www.w3resource.com/twitter-bootstrap/tutorial.php


  7. <script language=JavaScript> var message="Function Disabled!"; function clickIE4(){ if (event.button==2){ alert(message); return false; } } function clickNS4(e){ if (document.layers||document.getElementById&&!document.all){ if (e.which==2||e.which==3){ alert(message); return false; } } } if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=clickNS4; } else if (document.all&&!document.getElementById){ document.onmousedown=clickIE4; } document.oncontextmenu=new Function("alert(message);return false") </script>
    copy paste disable script
    <body ondragstart="return false" onselectstart="return false" >

  8. Billing Applications!!!

    Tuesday 8 January 2013

    http://sourceforge.net/directory/business-enterprise/financial/billing/os:windows/freshness:recently-updated/

    http://www.cio.com.au/article/324595/5_open_source_billing_systems_watch/

    http://www.citrusdb.org/

    Keyword : open source billing software application



  9. Php security!!

    Monday 7 January 2013

    http://phpsec.org/projects/guide/


  10. To search for a particular string in a external word document in PHP. Search can be done in both single and many documents.
    <?php

    $filename = 'proj-doc.doc';
    /*$word = new COM("word.application") or die ("Could not initialise MS Word object.");
    $word->Documents->Open(realpath($filename));

    // Extract content.
    $content = (string) $word->ActiveDocument->Content;

    echo nl2br($content);

    $word->ActiveDocument->Close(false);

    $word->Quit();
    $word = null;
    unset($word);*/
    /*$dir = opendir ("./");
            while (false !== ($file = readdir($dir))) {
                    if (strpos($file, '.doc',1)||strpos($file, '.docx',1) ) {
                      //  echo "$file <br />";
                    }
            } */
     $dir2= opendir ("./");
            while (false !== ($file = readdir($dir2))) {

    $extension=explode('.',$file);

                    if (strpos($file, '.doc',1)  && $extension[1]=="doc" ) {                    
     
    $filelists[]=$file;
                    }
            } 
     

    print_r($filelists);
    foreach ($filelists as $filename){
     if(file_exists($filename))
    {
        if(($fh = fopen($filename, 'r')) !== false ) 
        {
           $headers = fread($fh, 0xA00);

           // 1 = (ord(n)*1) ; Document has from 0 to 255 characters
           $n1 = ( ord($headers[0x21C]) - 1 );

           // 1 = ((ord(n)-8)*256) ; Document has from 256 to 63743 characters
           $n2 = ( ( ord($headers[0x21D]) - 8 ) * 256 );

           // 1 = ((ord(n)*256)*256) ; Document has from 63744 to 16775423 characters
           $n3 = ( ( ord($headers[0x21E]) * 256 ) * 256 );

           // 1 = (((ord(n)*256)*256)*256) ; Document has from 16775424 to 4294965504 characters
           $n4 = ( ( ( ord($headers[0x21F]) * 256 ) * 256 ) * 256 );

           // Total length of text in the document
           $textLength = ($n1 + $n2 + $n3 + $n4);

           $extracted_plaintext = fread($fh, $textLength);

           // simple print character stream without new lines
           //echo $extracted_plaintext;

           // if you want to see your paragraphs in a new line, do this
           //echo nl2br($extracted_plaintext);
      echo "<br/>";
       echo strpos( strtolower($extracted_plaintext),"component")?"eruku:".$filename:"ella :$filename"."<br/>";
           // need more spacing after each paragraph use another nl2br
        }
    }
    }
    ?>
    </div>

    Here in windom COM is not supported for open source server  so we using above code to read a word file.

    Refer : http://mukundtopiwala.blogspot.in/2012/10/read-word-files-using-php.html

  11. http://www.phplist.com/

  12. Doophp


  13. Thesaurus to select good word!!

    Sunday 6 January 2013

    http://graphwords.com/
    http://www.visualthesaurus.com/

  14. Joomla custom template

    Friday 4 January 2013

    Converting html to joomla template

    http://www.tobacamp.com/tutorial/5-easy-steps-converting-html-template-to-joomla-template/


    overwriting default output of joomla 1.5

    http://docs.joomla.org/How_to_override_the_output_from_the_Joomla!_core

    joomla main menu



    // Get default menu - JMenu object, look at JMenu api docs
    $menu = JFactory::getApplication()->getMenu();
    
    // Get menu items - array with menu items
    $items = $menu->getMenu();
    
    // Look through the menu structure, once you understand it
    // do a loop and find the link that you need.
    var_dump($items);


    http://stackoverflow.com/questions/3787669/how-to-get-specific-menu-items-from-joomla

    Joomal module

    To get module title and content
    <jdoc:include type="modules" name="top" style="xhtml" />

    To get module title alone
    <jdoc:include type="modules" name="home_1" />

  15. Web Hosting

    Thursday 3 January 2013

    For reviews:

    http://lifehacker.com/5796577/how-to-set-up-your-own-online-store

    http://lifehacker.com/5124856/most-popular-reliable-and-affordable-web-hosts

    http://www.hosting-review.com/



    Preferred

    www.hostgetor.com



  16. Flow chart

    Wednesday 2 January 2013

    http://www.gliffy.com

    Eg : http://www.gliffy.com/go/publish/4198064/

  17. Templates

    http://bowthemes.com



    Component

    EZ reality - for real estate

    K2 - for article management

    K2 Store - for store management


  18. Domain name search

    http://www.domainsbot.com/

    http://www.domjax.com/

    www.godaddy.com

    www.squarebrothers.com

    http://domainnamesales.com/



    Searching for brand names

    www.wordhippo.com

    http://www.smashingmagazine.com/2009/05/02/the-effective-strategy-for-choosing-right-domain-names/

    http://www.visualthesaurus.com

    http://www.seomoz.org/blog/how-to-choose-the-right-domain-name



  19. http://www.phpclasses.org/

    http://www.9lessons.info/

  20. Jquery image rotator plugin

    Tuesday 1 January 2013

    http://www.1stwebdesigner.com/css/fresh-jquery-image-gallery-display-solutions/

    http://www.mind-projects.it/projects/jqzoom/

    http://malsup.com/jquery/cycle/

    http://sorgalla.com/projects/jcarousel/#Examples

    http://ryrych.github.com/rcarousel/#examples

    http://www.themepunch.com/codecanyon/showbiz/
         
             Download link : http://www.newone.org/showbiz-business-carousel-jquery-plugin-rip-codecanyon
                                     http://wordpressplus.org/showbiz-business-carousel-jquery-plugin/     -> working

    http://caroufredsel.dev7studios.com/index.php

    http://codecanyon.net/item/hoverex-jquery-image-hover-animation-plugin/full_screen_preview/3450469?ref=themespotters

    http://www.aepbox.com/script/41881-codecanyon-picanim-jquery-image-hover-effect-pulgin.html

    http://www.aepbox.com/dl/free+codecanyon+hoverex+jquery+image+hover+animation+plugin.html