Mysql UPDATE Statement
There may be a requirement where the existing data in a MySQL table needs to be modified. You can do so by using the SQL UPDATE command. This will modify any field value of any MySQL table. Code $modelno =…
There may be a requirement where the existing data in a MySQL table needs to be modified. You can do so by using the SQL UPDATE command. This will modify any field value of any MySQL table. Code $modelno =…
You can use multiple tables in your single SQL query. The act of joining in MySQL refers to smashing two or more tables into a single table. First you can need database connection in php Code <table> <thead> <tr> <th>Make</th>…
PHP is a very powerful scripting language. Using PHP, you can perform various file operations. In this tutorial, I will show you how you can create, read, edit and delete file using PHP. You may also like How to Add,…
In this article laravel 5 form validation in a simple way. A form validation means us forcing user to enter correct data in form field according to our need. Laravel 5 provide a simple, convenient facility for validating data and…
Let see How to insert data in to database using Model in Laravel. You may also generate Eloquent models using the make:model command: php artisan make:model Here is sample code that you can use. Model in your controllers. use App\SearchLog; Insert data to…
Today, I am going to show you How to upload excel or image file using jquery Ajax in Laravel application. In this tutorial we are going to learn step by step example code of upload excel file using jquery Ajax…
Datepicker is very useful while you want to perform date and time related operation. it give very unique look to your html form. many developer face various kind of problems on integration datepicker to their website, and finally we write…
How to remove index.php in codeigniter In this tutorial we are going to learn how to remove index.php from URL using .htaccess file in CodeIgniter. htaccess is the shortened used for Hypertext Access. using this file you can do many…
As of these days most social networking sites are using this event to load most recent posts every second without refreshing page, stream and tweets like Facebook, Google+ and Twitter, it loads in the top part of the page. they…