dougal85 wrote:You could use GET method to pass variables. putting variables in the url like this www.domain.com/index.php?var=hello&var2=bye is a demonstration of GET
allows you access to the variable like this;
echo $_GET['var1']; echo $_GET['var2'];
Is that what you mean?
If you want to pass variables back and forth between JavaScript you will need to look into using AJAX. Google it
That is just what I needed
Now you have shown me how, it looks so simple that I wonder why I could not see it.
Thank you, very much appreciated
Thom