I made a similar question few hours ago, but I think I asked a wrong question there. This is more exact one.
im using cURL on PHP and i want to use a site, but everytime i change my site, the browser posts a value x to server, and if you dont, you can't go to the site.
you can see that the x value changes all the time from the picture, its a FireFox Live HTTP headers addon, it shows what pages i visit with browser

i looked the source code and found out what is the x value, and it comes from javascript. can i get the value with cURL or some other way from the server?
date = new Date();
ms = (date.getHours() * 24 * 60 * 1000) + (date.getMinutes() * 60 * 1000) + (date.getSeconds() * 1000) + date.getMilliseconds();
so the main problem is that the x value changes all the time and it has to be exactly "right" value , even milliseconds must be correct. i tried finding the value myself with javascript and then putting it to php, but still does not work
curl_setopt($ch, CURLOPT_URL, 'http://www.google.com/test.php?x=VALUE'), so this posts the x for me.do you understand what i mean, i know its very fuzzy, but i try to explain