Posts

Laravel Knowledge

1What is differenece between has() and hadFile() Ans:$request->has('field') is only for the check the file value is empty or not $request->hasFile() is check the input value as file or not. 2.What is middleware Ans:middleware is check all the input http request from server.It work as middle man types of work in laravel. Three Types 1.Global 2.Group 3.Routs 3.

PDO DataConnection

class pdodb{     var $conn;     private $host;     private $user;     private $pass;     private $dbname;     var $last_query;     function __construct(){         $this->host=DB_SERVER;         $this->user=DB_USERNAME;         $this->pass=DB_PASSWORD;         $this->dbname=DB_SCHEMA;         $this->connect();     }     function connect(){         $dsn='mysql:host='.$this->host.';dbname='.$this->dbname;         try{             $this->conn=new PDO($dsn,$this->user,$this->pass);         }catch(PDOException $e){             echo $e->getMessage();             exit;         } ...

Krishiv Poems Link

1. http://www.youtube.com/watch?v=6VjmKnFlJm0   2. http://www.youtube.com/watch?v=nvVDqTkbWnk 3. http://www.youtube.com/watch?v=zdE39rxwcDs 4. http://www.youtube.com/watch?v=HjHxUOoJi9g 5. http://www.youtube.com/watch?v=UC4x4Z8LH80 6.http://www.youtube.com/watch?v=sgGgDaqRJp8

Zend

1.http://edward-designer.com/web/passing-php-5-3-certification-exam/ 2.http://edward-designer.com/web/php-basics-php-5-3-certification-exam-series-1/ 3.http://shop.zend.com/in/php-products.html 4.https://shop.zend.com/in/ 5.https://www.facebook.com/groups/Zend2014/

Magento Free Module Link

  For Customer Sales Report 1. http://www.magentocommerce.com/magento-connect/perfect-excel-export-management-report.html   For Real Inventory Stock 2. http://www.magentocommerce.com/magento-connect/real-inventory.html    For Product Scrolling with Ajax Infinite 3. http://www.magentocommerce.com/magento-connect/vs-infinite-ajax-scrolling.html    For Setup Table Rate Shipping 4.http://www.magentocommerce.com/knowledge-base/entry/how-do-i-set-up-table-rate-shipping    how to create Different Stoe in Magento 5.http://www.fabrizio-branca.de/magento-website-store-groups-store-views.html  For Apply Coupon code on the Last step use following Extension : 6.http://www.magentocommerce.com/magento-connect/add-discount-coupon-with-checkout-process-1.html 7.http://www.magentocommerce.com/magento-connect/discount-coupon-code-checkout-page.html 8.http://www.magentocommerce.com/magento-connect/add-coupon-code-from-your-checkout-process.html Fo...
To learn Codeigniter Use below Link: 1. http://ellislab.com/codeigniter/ 2. http://tutorialcodeigniter.com/private/static-files.html 3. http://www.codefactorycr.com/login-with-codeigniter-php.html 4. http://ellislab.com/forums/viewthread/185672/#877537 5. http://stackoverflow.com/questions/4845806/codeigniter-2-0-fatal-error-class-controller-not-found-in 6. http://net.tutsplus.com/sessions/codeigniter-from-scratch/?search_index=2 7. http://www.codeproject.com/Articles/472820/Adding-Pagination-within-Codeigniter 8. http://ellislab.com/codeigniter/user-guide/general/routing.html
PHP Data Object/PDO Tutorial 1. http://www.phpeveryday.com/articles/PHP-Data-Object/PDO-Tutorial-P842.html 2. http://wiki.hashphp.org/PDO_Tutorial_for_MySQL_Developers 3. http://www.phpro.org/tutorials/Introduction-to-PHP-PDO.html 4. http://net.tutsplus.com/tutorials/php/php-database-access-are-you-doing-it-correctly/ 5. http://www.creativebloq.com/design/using-php-data-objects-1133026 6. http://php.net/manual/en/book.pdo.php 7. https://github.com/Quixotix/PHP-MySQL-Database-Class/blob/master/mysqldatabase.php 8. http://www.micahcarrick.com/web-development/