Skip to content

Instantly share code, notes, and snippets.

namespace App\Model\Entity;
use Cake\ORM\Entity;
class Article extends Entity
{
protected function _getTitle($title)
{
return ucwords($title);
}
/////////controller
public function getowner() {
$id = $_GET['id'];
$data = $this->Powners->get($id);
$petowner = $data->oname;
$ostreet = $data->ostreet;
$retvalue = $petowner . "|" . $ostreet;
public function getowner() {
$id = $_GET['id'];
$data = $this->Powners->get($id);
echo json_encode($data);
}
$("#myTable td:nth-child(1)").click(function(event)
{
event.preventDefault();
var $td= $(this).closest('tr').children('td');
var currentCellText = $td.eq(0).text();
var CellText = $td.eq(1).text();
$.ajax({
url:'<?php echo "getowner";?>',
type: 'GET',
data: 'id='+currentCellText,