Skip to main content

Posts

CodeIgniter 4 Module Generator Automatic (MySQL, Routes, Controller, Model, View) Files - Trailer

Automatic Generator - CodeIgniter 4 Module CodeIgniter 4 Module Generator Automatic (MySQL, Routes, Controller, Model, View) Files Demo :  https://codeigniter-4-module-generator.netlify.app/ Features 1. Automatic Generate Routes 2. Automatic Generate MySQL Code 3. Automatic Generate Controller File 4. Automatic Generate Controller API File 5. Automatic Generate Model Files 6. Automatic Generate View Files (insert, update, view) Video Tutorial

Youtube Random Comment Picker V3 - Open Source Project

Youtube Random Comment Picker V3 Use it to choose from giveaway winner YouTube video comments. YouTube Comment Picker V3.0.0 👉 Selecting a random comment from one of the YouTube video comments. 👉 Picking a random winner from video comments. 👉 Generating SVG and QR codes to the winner's data. 👉 Sharing the winner's data on Social Media Account. 👉 Comment Picker you can Play and Pause according to your need. 👉 YouTube Video and winner's data are saved in the Browser Local Storage (IndexedDB). 👉 Our Project's API runs Multi Request at a time that gives us Super Speed. 💻 Open Site: https://yt-rcp.netlify.app/ http://yt.ctechhindi.in/ 📓 Source Code: https://github.com/ctechhindi/YouTube-Comment-Picker Video Tutorial:  📁 Other Projects : 👉 https://youtube-cm2.netlify.app/#/ 👉 https://youtubeblade.netlify.app/#/ 👉 https://speedtyping.in/ 🔴 Subscribe to My Youtube Channel: https://goo.gl/rN2644 💰 Support by Donating - PayTm:...

#3 CodeIgniter 4 Beginner Tutorial - Module Base CodeIgniter 4 Project (HMVC) [SUBTITLES]

#3 CodeIgniter 4 Beginner Tutorial - Module Base CodeIgniter 4 Project (HMVC) [SUBTITLES]

#1 CodeIgniter 4 Beginner Tutorial - Installing (SUBTITLES)

CodeIgniter 3 Complete Login and Registration System with MySQL and Session Part #4

CodeIgniter 3 Complete Login and Registration System with MySQL and Session Part #3

How To Load Different View For Mobile Devices In CodeIgniter 3 - PHP

How To Load Different View For Mobile Devices In  CodeIgniter 3 - PHP User Agent Class The  User Agent Class  provides functions that help identify information about the browser, mobile device, or robot visiting your site. In addition, you can get referrer information as well as language and supported character-set information. The  User Agent  class is initialized in your controller using the $this->load->library function: $this->load->library('user_agent'); The name of the web browser viewing your site: $browser = $this->agent->browser(); > Home Controller <?php defined ( 'BASEPATH' ) OR exit ( 'No direct script access allowed' ); class Home extends CI_Controller {      public function index ()     { // Load User Agent Library [OR autoload.php file] $this -> load -> library ( 'user_agent' ); if ( $this -> ...