Hey guys, I got this code from
<html>
<head>
<script>
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || ''
);
}
</script>
</head>
<body>
Hello <script>document.write(getURLParameter('model')) </script> user, you just won!
</body>
</html>
So, find your lander in
Looking at that code, in the getURLParameter part, it gets whatever value is after the query string, i.e. if you have ('model') it sees this in the address bar
...landerURL.com/mylander.html?model=Dekstop User&OS=Windows...,
It finds model in blue and extracts the value in bold and prints it out.
Did exactly what you suggested and it seems to be working now.
Thanks again this will come in handy!