Hello guys,
I want an external site with different kind of statistics. These are
from all different recourses, and google analytics is one of them.
Now i want to use an auto-login for the google analytics part.
I searched on internet and found this one:
<script type="text/javascript">
function d(t){document.write(t);};
d('<form name="googform" action="
https://www.google.com/accounts/
ServiceLoginBoxAuth" method="post">');
d('<input type="hidden" name="continue" value="
https://www.google.com/
analytics/settings/home">');
d('<input type="hidden" name="Email" value="***d="Email">');
d('<input type="hidden" name="Passwd" value="***d="Passwd">');
d('<input type="checkbox" name="PersistentCookie" style="display:none"
checked="checked" value="yes">');
d('</form>');
document.forms["googform"].submit();
</script>
This works, BUT it sends me to google analytics start page (I am
logged in :D). But this is not how i want it, it has to stay on the
same external page, and not at google analytics page.
I hope u understand my problem and u can help me with it.
Koopie