I'm trying to make a CURL request on form but I have a problem.
Here is a checkbox input code:
<input type="checkbox" name="encodeURL" id="encodeURL"><label for="encodeURL" class="tooltip" onmouseover="tooltip('Encrypts the URL of the page you are viewing so that it does not contain the target site in plaintext.')" onmouseout="exit();">
How I can uncheck this checkbox? I tried like that:
$post = 'encodeURL=false';
But it doesn't work.
Where is a problem?