<li>
Assign Task to Every User?
<input type="checkbox" name="display_insert_email" onchange="this.form['email'].hidden=this.checked" />
</li>
<li>
<input type="text" name="email" style="width: 400px;" value="<?php if ($task_member_id > 0){ echo $task_member_email; } else 'Please enter email address of user'?>" onclick="if(this.value=='Please enter email address of user'){this.value=''}" onblur="if(this.value==''){this.value='Please enter email address of user'}" >
</li>
These are the two areas in question, if the value of the $project_member_id = 0 I would like the check box to be checked..
I have searched and searched but I cant find anything on this that is relevent to me, I may be searching the wrong things, but Any help would be greatly appreciated!