Article / mysql / PHP / SQLCompare in SQL query using php April 19, 2017 Chandan SharmaComment on Compare in SQL query using php$sql = “select * from user where strcmp(\”” . $_POST[’email’] . “\”,email)=0″; $r=mysql_query($sql); Read More
Database / mysql / mysqli / PHPMysqli 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 / PDOHow 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