0
votes
1answer
18 views
How to get the city from a Canadian zip code?
Hi,
Do you have any experience with obtaining the City from a Canadian zip code?
Is there a free web service to obtain city name by passing a Canadian zip code or can a regular expression be …
0
votes
2answers
22 views
Firebug reports ajax call as OPTIONS not GET
As the title suggests, I'm expecting an ajax call to be reported by Firebug as
GET myscriptname.php?arg1=a&arg2=b
but instead it's reporting
OPTIONS myscriptname.php?arg1=a&arg2=b
This …
1
vote
3answers
70 views
Static fields question
im trying to understand the get and set properties for fields, and run in to this issue, can somone explaine to me why i had to make the int X field Static to make this work?
using System;
namespace …
0
votes
4answers
63 views
How can I do a sort and search using both GET and POST variables?
I am currently using column header's as links that when clicked will sort the results by the column name by adding a get variable to the url. Here is an example:
<a href="
<?php
// Sorts by …
2
votes
5answers
67 views
Escaping user data, without magic quotes
Hey,
I'm taking a look at how to properly escape data that comes from the outside world before it gets used either for application control, storage, logic.. that kind of thing.
Obviously, with the …
0
votes
3answers
23 views
Multiple callback on $.get
here is the code :
<script>
$(document).ready(function(){
$.get("realisations.shtml",function(data){$('#realisations').empty().append(data)});
});
</script>
I need to …
0
votes
2answers
77 views
PHP - Dealing with GET and POST arrays
In my webapp I have a page called display.php. The script in this page behaves in different ways depending on POST and GET array content/existence, let's say: If I call this page and GET array isset, …
0
votes
2answers
45 views
PHP losing data for two variables
I have two scripts that I'm working on. The first receives $agentID via GET (as well as some other data via other GET variables), then looks up $firstName and $lastName in a database by $agentID. …
0
votes
1answer
33 views
Accessing an asp.net web service with classic asp
My company is considering working with another company on a particular module. Information would be sent back and forth between us through my web service. Thing is, my web service uses ASP.NET, and …
0
votes
6answers
47 views
PHP GET question - calling from a POST call
I have a quick question i hope you guys can answer, i've got a search system that uses POST to do searches, now i want to track queries using Google Analytics but it requires using GET url parameters …
0
votes
3answers
26 views
Can’t use Get in CodeIgniter
So I'm using codeigniter and I've had very letter experience with it so far but here's my issue.
I have an if statement I've set up that says if (@$_GET['f'] == 'callback') then do something, if not, …
0
votes
2answers
56 views
jquery - check if string begins with something?
I know that I can do like ^= to see if an id starts with something, and I tried using that for this, but it didn't work... Basically, I'm retrieving the url and I want to set a class for an element …
0
votes
4answers
115 views
Not using $_GET parameters
In working with CodeIgniter, it appears $_GET is disabled by default. I'm wondering why this is.
A lot of times, I want to build very long search queries. So for example, I have a form that allows …
2
votes
2answers
56 views
In JScript, is it possible to implement getters and setters that look like object properties from the outside?
While trying to port and generally playing around with some non-browser code, I came across getters and setters that looked like normal object properties. Something like this:
js> var o = {
a: …
0
votes
1answer
21 views
Get Text UIWebView PHP script
Basically my app has a UIwebView which loads a php script with input of user data. The script then uses printf(some info). This all works and it prints it right the UIWebView. Basically what I want to …
