Skip to main content

Posts

Google Adsense Alternatives

Almost all of you know about adsense which is the best PPC network among the advertisement companies which is ran by Google. But most of the time publisher’s account is disabled because of some reasons this mostly happens with new publishers because they don’t know much about their policies and they got banned or disabled and the bad news is that you can only once participate in adsense program if you got disabled once you would not be able to create another Account again. You should learn first how dose adsense work then you should apply. But there are many adsense Alternatives through which you can earn. In this article I will introduce you with some best adsense alternatives 2016 few of them could be used with adsense too on a website.   Best Adsense Alternatives 2016 Now I am going to tell you about few best adsense alternatives through which you can earn. If your website or blog have enough traffic you can even  earn more  than adsense. All of th...

How to Fix/Repair Your Currupted USB Flash Drive or SD Card

I will give some Steps To Fix or Repair You USB very easily First of all check the USB working or not If your USB do not working Then Fellow the following  6 Step 1)First of all Go to Command Prompt Short cut  WIn+R means go to run option 2)Write in   Run Option CMD or direct go to command prompt write some command there in Command Prompt 1)Writ Command No 1:  Deskpart Now second Command You Check the list of disk 2)Write Command No2: list disk 3)Write Command No3: select disk name of disk 4)Write Command No4:clean (for Remove viruses) 5)Write Command No5:creat partition primery 6)Write Command No6: format fs=fat32 wait to format 100% complete format then check you USB After you can use practically each command then you understand properly and see the result Note :Do not write the command No1: only write Command name above for example for list disk (list disk ) Please give me your comment Thanks

Codeigniter-Google-ReCaptcha

Codeigniter-Google-ReCaptcha Codeigniter-Google-ReCaptcha uses Codeigniter Form Validation.You just need to edit your config and form view.You don't need to write any extra codes.A simple Google ReCaptcha implementation for CodeIgniter - Easy installation - Write Less Code With 2 Steps Demo Usage You can easily implement "Google ReCaptcha" to your forms with 2 Steps.You don't need to write any extra codes on the controller for Google ReCaptcha validation.Just use codeigniter validation library. Code Sample Controller $this->load->library('form_validation'); $validation_rules = array(); // If you have another form rules you can define $this->form_validation->set_rules($validation_rules); if($this->form_validation->run()){ exit("Form validated"); } Installation Step-1 Open the "config/gcaptcha" file and write to "gcaptcha_server_secret" and "gcaptcha_client_secret" codes. /* |---...

GitHub Some Important Command that help you

/* Check the file status */ git status /* This will add your changes to the Staging on your machine */ git add . /* To commit your changes to the local repo */ git commit -m "Your message goes here, always add your message" /* To push the changes to the online repor */ git push origin master /*git reset for resert urlocal code git reset /*confiq margetoll git margetool git marger then composer dump-autoload //create middleware git php artisan make:middleware Admin Git has two modes of how it treats line endings: $ git config core.autocrlf # that command will print "true" or "false" or "input"

what is composer and how install it ?

Introduction # Composer is a tool for dependency management in PHP. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. on Commnad Line 1)INSTALL Composer require / Install composer 2)UPDATE Composer update Different libraries install command composer require mauro-moreno/laravel-highcharts composer require barryvdh/laravel-debugbar composer require "illuminate/html":"5.0.*" http://phptrends.com/dig_in/laravel-highcharts http://lavacharts.com/#charts

What is Database ORM ?

Object-relational mapping is a programming technique for converting data between incompatible type systems in relational databases and object-oriented programming languages. This creates, in effect, a "virtual object database" that can be used from within the programming language.