2
votes
5answers
58 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
74 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
44 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
32 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
42 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
2answers
47 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 …
2
votes
2answers
54 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
4answers
112 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 …
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
5answers
87 views
Improve HTTP GET PHP scripts
This code is getting the headers and content from $url, and prints it to the browser. It is really slow, and it's not because the server. How can I improve this?
$headers = get_headers($url);
…
0
votes
1answer
68 views
Jquery Ajax or Get doesn’t work on SOME IE
<script type="text/javascript">
$(document).ready(function(){
function listadepoimentos(page){
// $.get("ajaxes.php", {act:'listadepoimentos', page:page}, function …
1
vote
4answers
100 views
Is there an easy way to get characters from the keyboard without hitting enter in Java?
I'd like to know if there is an easy way to get character input from a JTextField in Java as they happen, not after an enter keystroke.
In my case I want the characters (text) to be read in, and when …
0
votes
4answers
83 views
Calling Javascript in a page after it’s been loaded by jQuery GET
Imagine a normal page calling javscript in head. The trouble is some of the content isnt loaded untill i click on a link. Subsequently when this link loads the content it wont work. This is because …
1
vote
3answers
82 views
Are these JQuery calls the same?
Hi guys,
Could someone tell me if this:
$.ajax({
url: 'test.html',
success: function(data) {
alert("Data Loaded: " + data);
}
});
is the same as this:
…
