Tagged Questions
The urlvariables tag has no wiki summary.
2
votes
6answers
520 views
How to send URL (with vars in it) as a single var?
I have a url string like this:
http://www.google.com/cse?cx=017840637368510444960:ny1lmky7r-0&client=google-csbe&output=xml_no_dtd&q=simon+g
I need to send this url from ajax to a php ...
1
vote
1answer
22 views
JavaScript Make Tabs
So, I am trying to make a "tabs menu", like this: http://flowplayer.org/tools/tabs/index.html
(but i dont want to use this.)
So, I tried to use url variables to set the active menu item.
Code:
...
1
vote
2answers
280 views
Load CSS based on URL variable in HTML page
I'd like to load a stylesheet when my URL variable contains "?view=full".
Is it possible to do this in HTML (i.e. not PHP)? If so, how?
1
vote
2answers
426 views
Flex 3: Getting variables from URL
If I have an application located at http://sitename.com/myapp/ and i want to pass in a variable via the url (i.e. - http://sitename.com/myapp/?name=Joe), how can I get that name variable into a string ...
0
votes
1answer
6 views
2 Facebook like buttons for same URL, with different get variables, seeing the same like count?
I generate a unique variable for each user on my site that is built into their referral link. When I put that link into a facebook like button the like count is separate for each link.
Here is my ...
0
votes
0answers
12 views
How to display data from more than one mysql databases on a webpage using url variable
I am using Dreamweaver to create a book website.
I have the following tables:
Books
-bookid
-bookname
-authorid
Authors
-autorid
-name
I have already created a url variable to for the books table ...
0
votes
3answers
61 views
AS3: Use the underscore character in a URLVariables variable name
Is it possible to use the underscore character in a URLVariables variable name? For instance, the following code outputs "my%5Fusername=foo" instead of "my_username=foo".
import ...
0
votes
1answer
53 views
Wordpress custorm URL variables causes strange redirect
I'm trying to have custom variables in my URL for Wordpress site. I have read up as much as I could find on the subject and so far have the following in my functions page:
function ...
0
votes
4answers
45 views
Append form value to URL that already has variables in it
I've got a page showing the results of a MYSQL query written in PHP. The URL has the variables that the user submitted on the previous page as:
...
0
votes
4answers
147 views
jQuery: Variable from URL, with ÆØÅ and what not
I use a script to get a variable from the URL and decode it - "userName" to be preciese.
However the script only works with English characters, and not Danish or other Latin characters. How can I get ...
0
votes
4answers
986 views
PHP variable in header function
I am attempting to pass variables through the URL using the header function as a way to redirect the page. But when the page is redirected it passes the actual variable names rather than the values ...
0
votes
3answers
455 views
Using a get variable from URL to do a MYSQL Query
I am using a post variable and i am attempting to use a get variable from the url to login a user.
Here is the process:
Users get their own url, i.e kayden.domain.com
and when they create their ...
0
votes
2answers
147 views
Getting last part of URL into variable with Url Rewriter
I'm using Url Rewriter to create user-friendly URLs in my web app and have the following rule set up
<rewrite url="/(?!Default.aspx).+" to="/letterchain.aspx?ppc=$1"/>
How do I replace $1 so ...
0
votes
3answers
767 views
Django return HttpResponseRedirect to an url with a parameter
I have a situation in my project where i need to make a redirection of the user to an url containing a parameter, (it is declared in the urls.py like:
url(r'^notamember/(?P<classname>\w+)/$',
...
0
votes
1answer
279 views
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][]"] = [];
...
-2
votes
4answers
82 views
PHP MySQL $_GET Hack prevention [closed]
Possible Duplicate:
Best way to stop SQL Injection in PHP
If I were to use the $_GET function to retrieve a variable from the URL how can I make it hack proof? Right now I just have ...