Hi people,
I am new to PHP and slowly learning how it all works,
At the moment I am trying to edit a script.
The current code shows a checkbox and when ticketed it is set to work the process and so on and so fourth...
Code:
<td><input type='checkbox' name='AllowTip' value='yes' <?php ($this->options['AllowTip'] == true) echo "checked"; ?> /> Yes</td>
What I would like to do is change this code so you cannot see the checkbox and have it perminatly set to Yes.
I know this may sound basic but I would gratefully appreciate any help.
thanks.
|