I'm sending data to a php
page for processing through jQuery
and ajax
and as result I will get
success: function(data){
mydata = data;
}
my data is an url that looks like mydata = https://myurl.com
. Now I want to set mydata to a php
variable and use it again inside another function in the main page, means: to set $url = mydata;
.
How can I do that?
Thanks,