In my MySQL to select between data  Example: SELECT id, current_role_in_khmerFROM currentroleWHERE id  NOT BETWEEN 11 AND 14AND id  NOT BETWEEN 18 AND 19AND `status`=1 in codeigniter       $this->db->select('*');      $this->db->from('currentrole');      $this->db->where('status',...
***************************APPLICATION FAILED TO START***************************Description:The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.Action:Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port. Anwser Configure another port number in /src/main/resources/application.properties server.port=8181...
If we can not insert anything on Intellij IDE such as back key.. issue like that  : On the top menu, go to Tools > Vim Emula...
HTML CODE <a href="#" id="dob" data-type="date" data-value="2012-11-11" data-pk="1" data-title="Select date"></a> PHP CODE (update.php) <?php //update.php $connect = mysqli_connect("localhost", "root", "", "X-editable"); $query = "  UPDATE employee SET ".$_POST["name"]." = '".$_POST["value"]."'   WHERE id = '".$_POST["pk"]."'"; mysqli_query($connect,...
https://stackoverflow.com/questions/13708781/datatables-warningtable-id-example-cannot-reinitialise-data-ta...
$config['sess_encrypt_cookie']  = TRUE;  change to $config['sess_encrypt_cookie']  = FALS...
  • 6:14 PM
  • Unknown
SELECT *  FROM table WHERE CONCAT( lastName,  ' ', FristName) LIKE  '%Rachana...