Questions tagged [urlvariables]

61 questions
0
votes
1 answer

replicate google maps URL behaviour with javascript? url+"/@foo"

google map does this thing where if I browse to, say, Australia, the URL changes to https://www.google.com/maps/@-28.0345854,135.1500838,4z I'm interested in doing something like this on my web application. So far I have this: var baseurl =…
user3746280
0
votes
1 answer

Browsers cut off query strings sent from Flash

I need to send a query string from Flash so that it appears in address bar of a browser. Basically, I need to make a Flash version of this HTML code: link Seems simple... When I try to do this from Flash the…
0
votes
1 answer

Flex / ActionScript Possible to add Empty Array to URLVariables

I have tried several different ways, but it seems that it never sends the empty array value to the server _vars["myObject[array_list][]"] = null; _vars["myObject[array_list][]"] = []; It only seems to work if I provide a value (which I…
gmoniey
  • 7,675
  • 4
  • 25
  • 29
0
votes
1 answer

2nd Variable in url in echoing

Ok, I am trying to get a variable from a url using PHP. Currently the site I am working with gets a the first url and sets it as a cookie. I am trying to get the second url and use it with our analytics software. The current url…
StevoBot
  • 30
  • 5
0
votes
0 answers

URL Variables being reused in form post

Apologies if this has already been answered or is a simple solution. I have tried searching for weeks for the answer to this problem on here and many other sites. The problem I have is that URL variables are automatically being reused. What happens…
0
votes
2 answers

Need help in getting the values of parms passed from URL with JQuery

I need help in getting the values of passed parms using Javascript from a url. In my Index html I defined the following:
0
votes
1 answer

Get URL Variables from a Frame and Pass to Codebehind

First off, yes I know I shouldn't be using frames, but I don't have a choice. It's an old system that's caused me nothing but headaches, but the network engineers love it and demand that this is where their information and pages have to go. I'm…
Drew
  • 242
  • 3
  • 15
0
votes
2 answers

ActionScript 3.0 URLRequest with Relative Link

I am trying to pass some data between PHP and Flash. In Flash I have managed to get the code below working. The problem is I want to use a relative link such as "data/config.php" however this gives me the following error: Error #2044: Unhandled…
0
votes
1 answer

how to use jquery-mobile listview to link to inner pages with UrlVars?

I have a problem with jquery-mobile listview. I some inner pages (#page1, #page2,..) into the same html file. e.g. in #page2, I have a jquery listview object:
    Each item of the listview has a URL that…
    actanony
    • 107
    • 11
    0
    votes
    3 answers

    How to Get Array From URL Encoded String?

    I'm sure this is a very easy thing but I couldn't find it in google for hours. I'm new to ActionScript and I'm trying to obtain an array of variables from a string that is generated by a .php file. my php file outputs…
    void
    • 1,736
    • 6
    • 22
    • 28
    0
    votes
    1 answer

    Adding additional Variable to URL

    I'm trying to add additional variables to the url. Eg: example.co.uk/searchtestingv2.php?categories=rockandpop and add: &prices=PriceLow example.co.uk/searchtestingv2.php?categories=rockandpop&value=PriceLow I've tried this: $query =…
    tech292
    • 33
    • 5
    0
    votes
    1 answer

    PHP include from URL variable going wrong

    On a page I am building, I require it to load a file into a portion of the page depending on a variable at the end of a URL. For example, if the page URL is test.php?page=lp then the page will include the file lp.php ...... now this was working for…
    C Nelson
    • 41
    • 7
    0
    votes
    1 answer

    HTML5 Manifest cache and url key values

    I was wondering how you can handle files with variables in the url like www.mysite.com?id=myvariable I can't possibly have to store every possibility? I used these variables because when the users are online they should be able to share their…
    Toon Van Dooren
    • 603
    • 1
    • 12
    • 27
    -1
    votes
    1 answer

    PHP url variable gives blank result

    I am trying to pass a variable to PHP page using URL GET but I get blank space, what is wrong?! url: http://localhost:2651/index_main.php?teamName=Liverpool here is the destination PHP file:
    Isabella
    • 185
    • 10
    -1
    votes
    2 answers

    CakePhp2 : How to get variables in an url like foo:bar/foo2:bar2/...?

    I'm using CakePhp2 and trying to get values of variables from a url. My url looks like controller/action/foo:bar/foo2:bar2/foo3:bar3 ? When I use $this->request['foo'] CakePhp says "Undefined index". Any idea to find values of foo, foo2 and foo3?
    Dacobah
    • 767
    • 3
    • 15
    • 33