I have added a new field both staff (works fine view/edit ticket and scp view) and client (view & edit) but would like it to show up on client/ticket.inc.php as well.
I have added...
<td> <a href="view.php?id=<?=$row?>"><?=$subject?> - <?=$new?></a>
$qselect = 'SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,new,name,email '.
',dept_name,status,source,priority_id ,ticket.created ';
and in class.client.php
var $id;
var $fullname;
var $username;
var $passwd;
var $email;
var $new;
$this->username = $row;
$this->email = $row;
$this->new = $row;
function getNew() {
return $this->new;
}
But it is not working what have I missed?
Thanks for any help :)