Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
2k views

What does it mean to start a PHP function with an ampersand?

I'm using the Facebook library with this code in it: class FacebookRestClient { ... public function &users_hasAppPermission($ext_perm, $uid=null) { return ...
10
votes
2answers
77 views

Why doesn't Twitter and Google API documentation encode ampersands in URLs?

I have read I should encode my ampersands as & in HTML. However numerous code samples from respected companies somehow forget to do this. Just a few examples off the top of my head: Google ...
6
votes
5answers
203 views

What is the result of the Reference Operator “&” on const variables?

I was asked how can a value of a const variable can be changed. My my obvious answer was "pointers!" but I tried the next piece of code and I'm puzzled... int main() { const int x = 5; int ...
5
votes
5answers
1k views

How-to XHTML 1.1 validate an ampersand without escaping it?

My issue is the following. I have a XHTML 1.1 page that has a form and input fields. One of the input fields contains a value which is an URI. This URI contains key-value pairs with ampersand (&) ...
5
votes
7answers
965 views

What does the '&' operator do in C++?

n00b question. I am a C guy and I'm trying to understand some C++ code. I have the following function declaration: int foo(const string &myname) { cout << "called foo for: " << ...
4
votes
1answer
86 views

Javascript (with Ajax) from PHP and Output Buffering

Thanks already to advice from Stackoverflow subscribers I now have a working JSON formatted file from my PHP scripts. The next step is to have a Javascript script to retrieve this data for sorting, ...
4
votes
3answers
153 views

Concatenating Strings in VBA

I'm maintaining an application written in Microsoft Access with VBA (don't ask!) Anyway, I'm glancing over my code and have just noticed I have subconsciously been concatenating strings together with ...
4
votes
1answer
229 views

How can I use ampersands in CSS within an HTML document and still validate?

I'm working on a framework that uses an image controller to load all images from a directory outside the webroot, and this includes images used within the CSS. Eg: background: #FFF ...
4
votes
1answer
474 views

Rails url helper not encoding ampersands

So I'm trying to use a Rails URL helper (page_url) to create URLs that contain special characters, including ampersands. Most cases work like you'd expect them to: (rdb:1) page_url('foo', :host ...
4
votes
6answers
2k views

What is the second meaning of a single ampersand in C#?

I have used the single ampersand (&) in C# to mean "check the second conditional statement even if the first is false". But the following seems to be a different meaning of & altogether, can ...
4
votes
3answers
512 views

Does this line declare a function? C++

I was reading litb's question about SFINAE here and I was wondering exactly what his code is declaring. A simpler (without the templates) example is below: int (&a())[2]; What exactly is that ...
3
votes
3answers
117 views

how does the ampersand(&) sign work in c++? [closed]

Possible Duplicate: What are the differences between pointer variable and reference variable in C++? This is confusing me: class CDummy { public: int isitme (CDummy& param); }; ...
3
votes
3answers
99 views

Manipulate ampersand in sed

Is it possible to manipulate the ampersand in sed? I want to add +1 to all numbers in a file. Something like this: sed -i "s/[0-9]\{1,2\}/$(expr & + 1)/g" filename EDIT: Today I created a loop ...
3
votes
2answers
474 views

Remove &amp from string when writing to xml in PHP

I am trying to write into an XML file using DOMDocument a link that contains the & sign. When I try this, the link becomes & in the xml. So from product=1&qty;=1 becomes ...
3
votes
3answers
93 views

How does &x vary from x if x is a pointer?

So...I have the following code: int main(void) { const char *s="hello, world"; cout<<&s[7]<<endl; return 0; } and it prints "world"...however I don't understand why this: int ...
3
votes
2answers
280 views

Ampersand in image urls MVC result in A potentially dangerous Request.Path

I have a bunch of images that contain ampersands in their names. My site is built on Asp.net MVC3. When I try to view the image with they urls below my site returns and error. Example urls: ...
3
votes
6answers
61 views

Can I do this: mysite.com?&var1=value1&var2=value2

Basically, I wrote this code: var paramStr = ''; for (var n in params) { paramStr += '&' + n + '=' + params[n]; } xhr.open(method, url + '?' + paramStr); Do I need to remove the first ...
3
votes
2answers
411 views

Jquery, ajax and the ampersand conundrum

I know that I should encodeURI any url passed to anything else, because I read this: http://www.digitalbart.com/jquery-and-urlencode/ I want to share the current time of the current track I am ...
3
votes
5answers
355 views

weird usage of “&” for a novice c++ programmer

I have some code here, and don't really understand the ">>" and the "&". can someone clarify? buttons[0] = indata[byteindex]&1; buttons[1] = (indata[byteindex]>>1)&1; ...
3
votes
6answers
345 views

Possible to have ampersands (“&”) in URL BEFORE the query string?

My client is determined to have a page at /nfm&t so I made a directory named nfm&t with an index.html (to test) and that URL is still throwing a 404. So apparently it's not that easy. Any ...
3
votes
1answer
2k views

LibXML2 Sax Parsing and ampersand

I've encountered (what I think is) a strange behavior when using the sax parser, and I wanted to know if it's normal. I'm sending this XML through the SAX parser: The "& a m p ;" gets ...
2
votes
5answers
181 views

C# Winforms escaping ampersand

How does one go around escaping the ampersand in C# Winforms? I tried adding the HttpUtility which has UrlEncode but it seems that .NET 4 doesn't allow the reference to be added in Winforms (The only ...
2
votes
2answers
131 views

Parse Ampersand in XML with Java's DOM XML API

I am trying parse an XML document with the Java DOM API (not SAX). Whenever the parser encounters the ampersand (&) when parsing a text node, it errors out. I am guessing that this is solvable ...
2
votes
2answers
113 views

Whats the difference between & and && in JavaScript?

Whats the difference between & and && in JavaScript? Example-Code: var first = 123; var second = false; var third = 456; var fourth = "abc"; var fifth = true; alert(first & ...
2
votes
2answers
99 views

Declare ampersand in DTD?

When transforming some xml (dita) documents there is a problem with special characters, ampersand and the "less than" character (<). But to take the ampersand as the example, what is happening is ...
2
votes
2answers
229 views

Ampersand (&) character is being ignored in Oracle ORDER BY

I am running a query in Oracle and that query is ordered by a column that may have values with ampersand. However, it seems that ampersand is being ignored by the sorting algorithm. For instance: ...
2
votes
0answers
127 views

PHP and ampersand [closed]

Possible Duplicate: What does it mean to start a PHP function with an ampersand? Hi dear stackers, I would like to share what I think to know and what I don't understand about the ...
2
votes
1answer
375 views

Can't pass in “%26” to a WebGet UriTemplate variable in a WCF service?

I have a WCF service with this declared operation: [WebGet(UriTemplate = "Test/{*testString}")] public String Test(String testString) { return testString; } However when attempting to invoke ...
2
votes
3answers
212 views

Is the following valid XHTML 1.0 Transitional?

The w3c validator service complains that the following html is invalid. It does not like the ampersand(&) in my javascript. But ampersands are allowed in javascript strings, aren't they? ...
2
votes
3answers
735 views

Literal ampersands in System.Uri query string

I'm working on a client app that uses a restful service to look up companies by name. It's important that I'm able to include literal ampersands in my queries since this character is quite common in ...
2
votes
1answer
613 views

How to get ASP.NET HyperLink control to encode ampersands in Text attribute?

I use the following control to output a HTML link: <asp:HyperLink ID="hlEditDetails" runat="server" CssClass="arrow-forward" Text="Edit Details &amp; Photo" /> However, when it does, the ...
2
votes
2answers
319 views

sizeWithFont - weird behavior when containing the & character

Whenever an & is present on the text, getting the height seems to be off all the time. Both functions return less than the actual height: CGSize labelSize = [nameLabel.text ...
2
votes
5answers
3k views

Use ampersand in CAST in SQL

The following code snippet on SQL server 2005 fails on the ampersand '&': select cast('<name>Spolsky & Atwood</name>' as xml) Does anyone know a workaround? Longer explanation, ...
2
votes
7answers
1k views

Why can't RSS handle the ampersand?

When I come across a broken RSS feed, the usual reason its all blown to pieces is because line 23 says "Sanford & Sons." The most confusing thing is the fact that if you convert the & into ...
1
vote
1answer
95 views

android sax xml URL parser handle ampersand

I am parsing XML from URL using SAXParser. XML is having some data with ampersand (&) sign. xml data is depreciated after & sign. Please give some example to resolve this issue. URL website = ...
1
vote
1answer
24 views

Passing a variable with a & through a url

On my webpage I need to pass a variable called deskname to a popup. My problem is that many of the desknames have a & in the middle (ex: Laundry & Tobacco). So when I try to include this ...
1
vote
4answers
53 views

XDocument saves &amp; instead of just &

I am using XDocument to switch a value in an xml document. In the new value I need to use the character '&' (ampersand) but after XDocument.save() the xml has &amp; instead! I tried using ...
1
vote
2answers
44 views

Passing an & through a javascript generated URL?

I have this line of code that is executed when a ddl in my page is changed - location.href = '@Url.Action("Edit", "Page", new { UserId = (string)null })/' + '@ViewBag.userId' + '?status=' + ...
1
vote
2answers
135 views

simplexml_load_file with & (ampersand) in url with Solr

I am using Solr and have the following query which works fine from my browser: ...
1
vote
3answers
237 views

How to disable/avoid Ampersand-Escaping in Java-XML?

I want to create a XML where blanks are replaced by &#160;. But the Java-Transformer escapes the Ampersand, so that the output is &amp;#160; Here is my sample code: public class Test { ...
1
vote
1answer
313 views

jQuery Autocomplete and Special Characters in WordPress

Hopefully im not missing an already existing answer to this question. Im working with a wordpress theme that uses jquery ui autocomplete to provide category selections in a front end form. Code is ...
1
vote
2answers
79 views

Ampersands (&) in xlink:href attributes of SVG images?

I'm building an SVG document which contains various image tags. The xlink:href (source URL) attributes for the images contain query strings with ampersands. If I escape them as %26 or the ascii ...
1
vote
0answers
47 views

Potentially dangerous request while passing escaped amp character

While making request to url /Download/9483c374-c6f5-4b32-974b-2ad67fb2d3c2/true/test%26amp.pdf I take Potentially dangerous request ... (&). Why? Amp is escaped. ValidateRequest="false" doesn't ...
1
vote
2answers
120 views

PHP echo automatically replaces “&” with “&amp;”

I'm making a PHP function that converts a $_GET array into the URL string format.. e.g. Array('key1'=>'value1', 'key2'=>'value2') gets converted to: ?key1=value1&key2=value2 I think the ...
1
vote
2answers
91 views

PHP - & in header()

I have the parameter: http://example.com?ex=http://la.net?c1=a1&c2=a2&c3=a3 I want to redirect to this URL, but while I do it, I'm getting into ...
1
vote
2answers
377 views

Ampersand problem in XML when creating a URL String

I am working with an XML feed that has, as one of it's nodes, a URL string similar to the following: http://aflite.co.uk/track/?aid=13414&mid=32532&dl=http://www.google.com/&aref=chris ...
1
vote
1answer
152 views

What does an ampersand mean when assigning a variable? (Java)

What does the ampersand mean in this code? int clothes = (random.nextInt(0x1000000) & 0x7f7f7f);
1
vote
3answers
276 views

Ampersand before function name? [closed]

Possible Duplicate: What does it mean to start a PHP function with an ampersand? I was looking at the source for Drupal 7, and I found some things I hadn't seen before. I did some initial ...
1
vote
2answers
73 views

Can I rely on an unescaped ampersand displaying correctly in a textarea?

I've just notice a routine in our code that doesn't properly escape an ampersand in a textarea: <textarea>Arts & Crafts</textarea> What surprises me is that this works in every ...
1
vote
5answers
237 views

How can I make my xml safe for parsing (when it has & character in it)?

I've been given an xml string which I need to put through a parser. Its currently complaining because of an illegal xml character. Very simplified example: <someXml>this & ...

1 2 3