Questions tagged [urlvariables]

64 questions
0
votes
0 answers

Problems in passing url variables PHP

I have a code for a shopping cart, which uses sessions to store the cart info for visitors/guests. I dont want visitors to make an account and login just for adding a few items into cart, so that's the reason for the guest cart using sessions. I…
Jakie
  • 103
  • 2
  • 15
0
votes
1 answer

Single url variable with multiple values into array

I have a url with a single variable (category), but the variable has multiple values. Example: http://websiteurl.com/?category=cat+dog+rabbit+-cow I'd like to generate an array with this information. print_r…
mdcrtv
  • 143
  • 1
  • 2
  • 12
0
votes
0 answers

How to load a .xml file with URLVariables

How to load a .xml file with URLVariables using AS3 example: file example.xml?varsHere var loa:URLLoader = new URLLoader(); loa.addEventListener(Event.COMPLETE, gocom); loa.addEventListener(IOErrorEvent.IO_ERROR, gotError); loa.load(new…
PATurmel
  • 77
  • 1
  • 5
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,975
  • 4
  • 27
  • 30
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
  • 1
  • 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
  • 272
  • 1
  • 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
    • 117
    • 1
    • 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,876
    • 8
    • 24
    • 30
    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
    • 31
    • 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