Recent content by anaman123456

  1. A

    How do I choose a hosting provider?

    How do I choose a hosting provider?
  2. A

    Permanently Closed Marketplace Sales Thread

    hOW TO MAKE extension in magento...?
  3. A

    Permanently Closed Marketplace Sales Thread

    what is click tracking ?
  4. A

    Permanently Closed Marketplace Sales Thread

    very nice, thanks lot..
  5. A

    Open a random file with C#?

    private string getrandomfile(string path) { ArrayList al = new ArrayList(); DirectoryInfo di = new DirectoryInfo(path); FileInfo[] rgFiles = di.GetFiles("*.*"); foreach (FileInfo fi in rgFiles) {...
  6. A

    C++ or C#

    C++ was developed in the 1980s, based on the C language, but with a bottom-up approach. C# is the latest toolset, based on C++ code.
  7. A

    Links in Wordpress Excerpts?

    use below, i hope its helpful..;) // Changing excerpt more function new_excerpt_more($more) { global $post; return '... <a href="'. get_permalink($post->ID) . '">' . 'Read More »' . '</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
Back
Top