Showing posts with label 2014. Show all posts
Showing posts with label 2014. Show all posts

Friday, 17 January 2014

Make Unlimited Free Calls India To India 100% working

1 comment :
  • Make Unlimited Free Calls to India.


    • Although SMS has gained popularity among people of India specially youngsters like college goers in these days cause of free sms sending websites like way2sms, 160by2.com etc.But there is no website that provides free calling to its users even in developed countries like US. We have seen many websites that promises free calling but after some minutes of calling they ask to purchase credits etc. There are now some website which provides free calling but call does not get connects to DND number. So we thought that if sms can be provided free why not calling can be free so we planned to tell a website that will provide free calling to its users.
  • Fcall:


    • Free call up to 4 minutes (per 1 call) anywhere in India.
    • Unlimited free calling.
    • You don't have to wait in queue to get calls connected.
    • Crystal clear voice.
    • Free 460 character sms anywhere in india.
    • Guaranteed delivery of sms in seconds.
  • Sign up now
  • Site2sms:

    • Free call up to 2 minutes (per 1 call) anywhere in India.
    • 40 Minutes per Day.
    • Site2SMS.Com is the First Web Portal in India to offer free Voice SMS and Voice Calling to any mobile number in India.
    • Send Free Voice and Text Sms To Any Mobile In India Easy sending, coupled with exceptional delivery speed With Free Email Alert's On Mobile has made Site2SMS highly popular.
    • Site2SMS Support 260 Characters Long Sms To Any Mobile Number In India. (India's First Free Messaging Portal To Offer Voice Sms)
    • Site2SMS has the ability to deliver over 200 SMS per second And is capable of handling extremely high volumes of messaging during peak hours.
    • A dedicated team monitors the operational flow of Site2Sms.Com Sms Service's 24x7

    • Sign up now
    •                                              
    • If you like my blog please share and comment it. thank you.

Read More

Wednesday, 15 January 2014

A complete PHP Tutorial For Beginners To Learn PHP Basic Part 7

No comments :

  • PHP Looping


    • The while Loop

      • Syntax

        1. while (condition) 
        2. code to be executed; 
        3. }
        • Example

          • The example below defines a loop that starts with i=1. The loop will continue to run as long as i is less than, or equal to 5. i will increase by 1 each time the loop runs:
          1. <html> 
          2. <body> 
          3. <?php 
          4. $i=1; while($i<=5) 
          5. echo "The number is " . $i . "<br />"; 
          6. $i++; 
          7. ?> 
          8. </body> 
          9. </html>
          • Output:

          1. The number is 1 
          2. The number is 2 
          3. The number is 3 
          4. The number is 4 
          5. The number is 5
      • The do...while Statement


        • The do...while statement will always execute the block of code once, it will then check the condition, and repeat the loop while the condition is true.
        • Syntax

          1. do 
          2. code to be executed; 
          3. while (condition);
          • Example

            • The example below defines a loop that starts with i=1. It will then increment i with 1, and write some output. Then the condition is checked, and the loop will continue to run as long as i is less than, or equal to 5:
            1. <html> 
            1. <body> 
            2. <?php 
            3. $i=1; 
            4. do 
            5. $i++; 
            6. echo "The number is " . $i . "<br />";
            7. while ($i<=5); 
            8. ?> 
            9. </body> 
            10. </html>
            • Output:
            1. The number is 2 
            2. The number is 3 
            3. The number is 4 
            4. The number is 5 
            5. The number is 6

            • The for Loop

              • Syntax

                1. for (init; condition; increment) 
                2. code to be executed; 
                3. }
              • Parameters
              • init: Mostly used to set a counter (but can be any code to be executed once at the beginning of the loop)
              • condition: Evaluated for each loop iteration. If it evaluates to TRUE, the loop continues. If it evaluates to FALSE, the loop ends.
              • increment: Mostly used to increment a counter (but can be any code to be executed at the end of the loop)
            • Example

              • The example below defines a loop that starts with i=1. The loop will continue to run as long as i is less than, or equal to 5. i will increase by 1 each time the loop runs:
              1. <html> 
              2. <body> 
              3. <?php 
              4. for ($i=1; $i<=5; $i++) 
              5. echo "The number is " . $i . "<br />"; 
              6. } ?> 
              7. </body> 
              8. </html>
              • Output:

              1. The number is 1 
              2. The number is 2 
              3. The number is 3 
              4. The number is 4 
              5. The number is 5
          • The foreach Loop

            • Syntax

              1. foreach ($array as $value) 
              2. code to be executed; 
              3. }
              • For every loop iteration, the value of the current array element is assigned to $value (and the array pointer is moved by one) - so on the next loop iteration, you'll be looking at the next array value.
              • Example

                • The following example demonstrates a loop that will print the values of the given array:
                1. <html> 
                2. <body> 
                3. <?php 
                4. $x=array("one","two","three"); 
                5. foreach ($x as $value) 
                6. echo $value . "<br />"; 
                7. ?> 
                8. </body> 
                9. </html>
                • Output:

                1. one 
                2. two 
                3. three


Read More

How To Upload and Install Php Script To Make A Website Full Tutorial

2 comments :

To Upload a php script you need to find a ftp access. Suppose you open a free hosting account in Ultimatefreehost.com. now you need to find ftp access

FTP Access Finder:

  • To find a ftp access login to control panel. Login to cPanel
  • After login Find "Ftp Acces Menu"
  • Find your 
  1. Ftp host name
  2. Ftp username
  3. Ftp password

Upload Your Script:

  • To upload your script, you need to use a ftp server such as Net2ftp
  • Enter your information at login page
  1. Ftp host name
  2. Ftp username
  3. Ftp password
  • click Public_html Folder


  • click on upload
  • Upload your script now

Create Mysql Database:

  • A Mysql database is required to run your php script.
  • From your ultimatefreehost.com control panel find mysql database.
  • Create Mysql database:

  • Note your 
  1. Mysql host name
  2. Mysql username
  3. Mysql database name
  4. Mysql password

Install Script:

With A Install Folder:

  • If your script has a install folder then its very easy to install it. If your website is www.blogwritter.com, then go to www.blogwritter.com/install and proceed.it will done.
  • If your script has a install.php then its very easy to install it. If your website is www.blogwritter.com, then go to www.blogwritter.com/install.php and proceed.it will done.

Without A Install Folder:

  • Without a install folder its hard to install script. if have to do two step.
  1. Configaration file edit
  2. Sql file upload

Configaration File Edit

  • Find a file named like config.php or setting.php or connect.php or something like that.
  • Edit there:
  1. Mysql host name
  2. Mysql username
  3. Mysql database name
  4. Mysql password

Sql file upload


  • Find a .sql file in your script and upload it in phpmyadmin.
  • Login to ur control panel and find mysql databases.
  • Enter phpmyadmin.
  • find query window.


  • click on import file and upload it in binary format.

  • Its done.

If you like my blog please share and comment it. thank you.


Read More

Monday, 13 January 2014

Best Top Free WordPress Themes For 2014

2 comments :


Enjoy the top best free WordPress themes of 2014 guys !!!!

Customizr WordPress Theme Free Download

  • Enjoy designing a beautiful website live with the WP customizer : select skin, logo, social profiles, sliders, layout, home featured blocks, or even live css styling. The flat and fully responsive design can be used for small businesses, portfolios, blogs, corporate sites or landing pages. Built with valid HTML5 and CSS3 (from the Twitter Bootstrap), cross-browser tested, the theme is translation ready and available in 15 languages. Ready for WooCommerce, bbPress, qTranslate, the code is easily extensible with a comprehensive API of hooks.

Twenty Thirteen WordPress Theme Free Download


  • The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.

Expound WordPress Theme Free Download

  • An awesome magazine theme for your WordPress site. Responsive layout, post thumbnails support, featured posts and more.

Corpo WordPress Theme Free Download

  • Corpo is a responsive business & portfolio theme which can be used for personal or corporate website. It features slider on the home page, 5 custom widgets, 2 menu locations and theme options to easily manage your website. Corpo also offers additional Portfolio custom post type to showcase your work.

Hueman WordPress Theme Free Download

  • Hueman is a responsive 100% high resolution theme for blogs and magazines. Unique toggle sidebars give a great browsing and reading experience on both tablet and mobile. The feature list is long: Unlimited topbar, header, footer and accent colors, unlimited widget areas, 0-2 sidebars to the left or right that can be uniquely specified for each page or post, 300px / 220px fixed width sidebars, 0-4 footer widget columns, almost zero layout images, related posts and post nav, featured story or slider, 10 post formats, good SEO, 3 flexible custom widgets, localisation support, social links, logo upload and many more useful admin panel features.

Twenty Fourteen WordPress Theme Free Download

  • In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three widget areas to customize your website, and change your content's layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.

Sixteen WordPress Theme Free Download

  • Sixteen is an artistic and responsive theme suitable for most blogs. It supports header image with a parallax effect. A Reponsive Slider, Customizable Header and Footer, Grid Layout for Homepage, etc make it one of the most unqiue wordpress themes. Sixteen has been already translated into French, Spanish, Russian, Japanese, Arabic and supports translation into more languages.

Destro WordPress Theme Free Download

  • Responsive WordPress magazine theme with 3 home page layouts, 300x250 ads, 125x125 ads, 8 premade (Black, Blue, Red, brown, pink, white and Green) ready to use color schemes/skins, 2 page layouts including a full width page template, featured posts, social icons, twitter updates, threaded comments and widget support.

Attitude WordPress Theme Free Download

  • Attitude is a Simple, Clean and Responsive Retina Ready WordPress Theme which adapts automatically to your tablets and mobile devices. Theme is easily customizable with numerous theme options. Some of the highlighted options are two site layout (Narrow and Wide), 5 layouts for every post/page, 5 Page Templates, 5 widget areas, 4 custom widgets, featured slider to highlight your post/page, 11 social icons and many more. Also has custom background, header, menu, favicon, CSS, webclip icon, and logo. Supports popular plugins like Breadcrumb NavXT, WP-PageNavi and Contact Form 7. It is also translation ready. Available Translation: Traditional Chinese (Taiwan), Spanish, Norwegian (Nynorsk), German and Russian.

Spun WordPress Theme Free Download

  • Spun is a minimalist, responsive theme that puts the emphasis on your content; extraneous navigation fades away to put your words and images front and center. PLEASE NOTE: Version 2.0 makes some major changes, please upgrade at your own risk.

Twenty Twelve WordPress Theme Free Download

  • The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.

Twenty Eleven WordPress Theme Free Download

  • The 2011 theme for WordPress is sophisticated, lightweight, and adaptable. Make it yours with a custom menu, header image, and background -- then go further with available theme options for light or dark color scheme, custom link colors, and three layout choices. Twenty Eleven comes equipped with a Showcase page template that transforms your front page into a showcase to show off your best content, widget support galore (sidebar, three footer areas, and a Showcase page widget area), and a custom "Ephemera" widget to display your Aside, Link, Quote, or Status posts. Included are styles for print and for the admin editor, support for featured images (as custom header images on posts and pages and as large images on featured "sticky" posts), and special styles for six different post formats.

Responsive WordPress Theme Free Download

  • Responsive Theme is a flexible foundation with fluid grid system that adapts your website to mobile devices and the desktop or any other viewing environment. Theme features 9 Page Templates, 11 Widget Areas, 6 Template Layouts, 4 Menu Positions and more. Powerful but simple Theme Options for full CMS control with easy Logo Upload, Social Networking and Webmaster Tools etc. Responsive is WooCommerce Compatible, Multilingual Ready (WPML), RTL-Language Support, Retina-Ready, Search Engine Friendly, W3C Markup Validated and currently translated into 45 languages. Cross-Browser compatible.

Coller WordPress Theme Free Download

  • Coller is a Modern minimal ultra responsive theme with a lot of features including responsive featured slider and Fully Customizable Header and Footer. Coller has been translated into Many Languages including Dutch, German, French, Italian, Portuguese, Spanish & many more.



If you like my blog please like and share it. thank you.

Read More

Thursday, 9 January 2014

Godaddy Latest Promo Codes 2014

2 comments :

hi friends today i will tell you Latest 100% working Godaddy promo codes of 2014.These are given below.

Godaddy Domain Promo Code

  • .Com at $1.99: iapbh199c
  • .Com Domain at $2.99: cjcRMN295c
  • .Com at $2.95: cjcFW295c
  • Domain at $1.99: CODER199
  • Transfer or New Domain at $1.99:  DEC199TW1
  • .Com for $2.95:  USAGPCOM1
  • .Com or Transfer for $2.95:   295nut
  • Discount $2 for Registering Domain: INDOMAIN16
  • .Com for $2.95:   cjc295c
  • .Com for $2.95:   gtnibica31
  • .Com for $2.95:  gtnivt12
  • .Com transfer for $7.99: cjc799chp

Godaddy Hosting Promo Code

  • 50% Off on Hosting with Annual Purchase and Free Domain: cjcrmnh50
  • 50% Off on Hosting with Annual Purchase and Free Domain: 50host2
  • 50% Off on Hosting with Annual Purchase and Free Domain: cjcFWh50
  • 50% Off on Hosting with Annual Purchase and Free Domain: HOSTWALLET
  • 50% Off on Hosting with Annual Purchase and Free Domain: 50wsb1
  • 50% off on Hosting: cjcgood50h
  • Economy Hosting for $1.99/m Upto 12 Months and Free Domain: cjcfwhost
  • Economy Hosting for $1.99/m Upto 12 Months and Free Domain: HOSTDJ
  • Hosting For 12 months at $1.99 and free domain: HOSTHOP
  • $1.99 Off on Hosting: hostoff

Godaddy Website Builder Promo Code

  • 50% Off + Free Domain for 1 Year : CHHWSB
  • 50% off For Business Website builder: cjcFWsbs
  • 1 year Economy for $1/m + Free Domain: cjcfw713w
  • 50% off For Business Website builder 1 year + Free Domain: 50WSB2

Godaddy Renewal Promo Code

  • 43% Off For renewal And 60% off Private Registration: GDBB776
  • $8.49 Domain Renewals: gd50bbpd5
  • 35% Off on Renewal: gd31134be
  • 30% off on Renewal And Free Private Registration:  BB2086D60
  • 31% off on renewals: gd3836a
  • 31% off on renewals or Purchases: gd31227ba
  • 30 off on renewals or Purchases:GDBBG1562
  • $8.49 renewals:Comsale3

Godaddy  Discount Promo Codes

  • 35% Off on New Product: WOW5454
  • 30% Off on New Product: cjcrmn30n
  • 25% off : Save25F
  • 30% Off new Product : Timeout
  • 2$ off for registering domain: INDOMAIN16
  • 29% off For New Customers: cjcrmn29nw
  • 30% Off on New Product: cjc30off1
  • 30% Off on New Product: sas35new1
  • 10% off sitewide: sas10order
  • 30% Off on New Product: cjFW30n
  • 30% Off on New Product: ROAD
Read More