Skip to content

Logic Bytes

Spread Your Knowledge

  • Home
  • How To
  • PHP
    • Cakephp
    • WordPress
    • CodeIgniter
    • Laravel
  • Python
    • Django
    • Flask
  • Contact

Database

CodeIgniter / Database / PHP

How to update a column value with the current column value plus an increment in codeigniter?

October 31, 2017 Chandan SharmaComment on How to update a column value with the current column value plus an increment in codeigniter?

How to update a column value with the current column value plus an increment in codeigniter?How to update a column value with the current column …

Read More
CodeIgniter / Database / mysql / PHP

Update the value of a field in database by 1 using codeigniter

October 31, 2017 Chandan SharmaComment on Update the value of a field in database by 1 using codeigniter

  Update the value of a field in database by 1 using codeigniter $this->db->set(‘usage’, ‘usage+1’, FALSE); $this->db->where(‘tag’, ‘java’); $this->db->update(‘tags’);

Read More
Article / CodeIgniter / Database / mysql / PHP / SQL

On delete Cascade in php

June 29, 2017 Chandan SharmaComment on On delete Cascade in php

## ON Delete Cascade: Cascade will work when you delete something on table Courses. Any record on table BookCourses that has reference to table Courses …

Read More
CodeIgniter / Database / mysql / PHP / SQL

On delete Cascade in php

May 18, 2017 Chandan SharmaComment on On delete Cascade in php

## On Delete one main table data ,delete related others table data. ALTER TABLE Courses ADD FOREIGN KEY (CatCode) REFERENCES Categories(Code) ON DELETE CASCADE;

Read More
CodeIgniter / Database / mysql / PHP / SQL

Sql-. On delete Cascade in sql

May 17, 2017 Chandan SharmaComment on Sql-. On delete Cascade in sql

#ON DELETE CASCADE IN SQL Cascade will work when you delete something on table Courses. Any record on table BookCourses that has reference to table …

Read More
Database / mysql / mysqli / PHP

Mysqli is not working in php version 7

March 12, 2017 Chandan SharmaComment on Mysqli is not working in php version 7

## By using this function we can reduce errors and can work using mysql instead of mysqli. <?php if (PHP_VERSION_ID > 59999) { function mysql_connect($a,$b,$c,$d=null) …

Read More
Database / mysql / mysqli / PDO

How to connect using Mysqli, Mysql & PDO in php

March 12, 2017 Chandan SharmaComment on How to connect using Mysqli, Mysql & PDO in php

## All connection are shown below.Like mysql, mysqli, PDO <?php // mysqli $mysqli = new mysqli(“example.com”, “user”, “password”, “database”); $result = $mysqli->query(“SELECT ‘Hello, dear MySQL …

Read More
Database / mysqli

How to connect using mysqli_connect in php

March 12, 2017 Chandan SharmaComment on How to connect using mysqli_connect in php

<?php //echo “I am Working Now”; $dbhost = “localhost”; dbuser = “root”; $dbpass = “”; $dbname = “chandan_test” $link = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname); $ss …

Read More
Database / PHP

How to Connect Database in php

March 12, 2017 Chandan SharmaComment on How to Connect Database in php

# It used in core php $dbhost = HOSTNAME; $dbuser = DATABASE USERNAME; $dbpass = DATABASE_PASSWORD; $dbname = DATABASE_NAME; $link = mysqli_connect($dbhost, $dbuser, $dbpass, $dbname);

Read More

Posts navigation

Previous 1 2

Recent Posts

  • Python Automation Framework-PyUnit (Unittest) Framework
  • Python Automation Framework-TestProject Framework
  • Python Automation Framework-Pytest Framework
  • Python Automation Framework-Lettuce Framework
  • Python Automation Framework-Behave Framework:
  • Top Python Testing Automation Frameworks in 2024
  • Visual Studio Code Keyboard Shortcut Editor
  • Visual Studio Code Keyboard Shortcuts
  • How to Remove Sidebar from Category Pages in WordPress?
  • Best Practices for API Responses

Automation Frameworks Automation Testing Behave Framework Blogger Blogspot Cakephp Cheat Sheets Code Editor CodeIgniter Code Navigation Collaborative Coding Debugging Tools Disable Mouse Right Click Domain Extension Editor Extension Full form Facebook Facebook Video Download IDE JavaScript JQuery Lettuce Framework Microsoft Code Editor Open-Source Code Editor PHP Pytest Framework Python Python-3.x Python Automation Python Automation Frameworks Python Automation Testing Python Pytest Framework Python Testing Frameworks Python TestProject Framework Python Unittest Framework Syntax Highlighting Testing Frameworks Text Editor for Developers Visual Code Visual Code Editor Visual Studio Code Visual Studio Code Cheat Sheet VSCode VSCodeEditor WordPress

Copyright © 2026 Logic Bytes.
Powered by WordPress and PridMag.