hi in a php proxy for example www.privacynest.com how can i by default keep the part where it says 'include min URL-form- checked no matter what?
Change <input name="ops[]" checked="checked" type="checkbox"> Code (markup): to <input name="ops[]" checked="checked" type="checkbox" disabled="disabled"> Code (markup):
As an aside to this, what's with the brackets in "ops[]"? I didn't know you could do that in a form, what exactly does it do?
The [] makes it an array. It let's your end user check more than one box. If you left off the [], only the last checked box would register.