Tagged Questions

1
vote
2answers
43 views

Encrypting Querystring and Decrypting it in PHP

I have the following Encryption Classs in php define(ENCRYPTION_KEY,"abcdegef"); define(INITIALIZATION_VECTOR,mcrypt_create_iv(mcrypt_get_iv_size(MCRYPT_DES, MCRYPT_MODE_ECB), MCRYPT_RAND)); …
0
votes
2answers
132 views

Accessing a document’s text from an <iframe> that’s hosted on a different domain

I'm implementing a "widget" that will be included on article/story pages of a 3rd-party website. This widget lives in an <iframe> hosted on our domain. It needs to gather text from the articles …
1
vote
1answer
18 views

Wordpress query post get Image unless blank

Hi I am creating a wordpress custom page theme, I have included the code. Is there a way to dynamically add the list items. In the code I grab each image related to its post with screenshot1 …
0
votes
1answer
28 views

Getting rid of extensions in variables (CMD)

CMD Q: I want to remove the extension of a filename. It is actually a complete path, like C:/Me/My/Path/filename.xxxx i know that the extension has 4 chars, like shown in example above. How can i …
3
votes
11answers
8k views

HTTP GET request in Javascript?

I need to do an HTTP GET request in JS, what's the best way to do that? Thanks EDIT: I need to do this in a Mac OS X dashcode widget
1
vote
1answer
21 views

Get all the dates in a week of the selected date in jquery date picker?

I am creating a task list with number of hours worked to be entered against each task along each day of the week. So if a user clicks on a particular week dates then I need to get all the days' dates …
4
votes
7answers
218 views

GET vs POST in ajax ?

Why are there GET and POST requests in AJAX as it does not affect page url anyway? What difference it makes by passing sensitive data over GET in ajax as the data is not getting reflected to page URL …
0
votes
2answers
263 views

AJAX and NS_ERROR_DOM_BAD_URI error

Hi guys, I have been having the following problem, i think it's probably due to the fact that my approach may be misguided, but hopefully with your help i can sort this out! Basically, for my site i …
1
vote
2answers
50 views

HTTP GET Request, ASP - I’m lost!

Hi, Using VBScript with ASP I am trying to set up an HTTP GET Request which will visit a page which in turn generates a line of ASCII (non-HTML). I then want to extrapolate that ASCII line which will …
2
votes
7answers
71 views

PHP GET variable array injection

I've recently learned that it's possible to inject arrays into PHP GET variables to perform code execution? .php?a[]=asd&a[]=asdasd&b[]=$a That was the example I was given. I have no idea …
0
votes
1answer
363 views

Jquery’s ThickBox: opening an iframe with GET parameters

Hey, I tried all sorts of combinations, how can I open a page in thickbox that has get parameters in it? for example: <a …
0
votes
6answers
78 views

How do I read a unicode url with PHP?

I have a unicode url: \test.php?sText=Московский I would like to use the $_Get function to work with the value of sText. The code I have for test.php is: <?php $sVar = $_GET['sText']; echo …
0
votes
1answer
37 views

How to set default url in $.post of jQuery?

$.get('',{id:1}) will send request to the current page, but $.post('',{id:1}) won't,why? And how to do it like $.get('',{id:1}) ? Anyone knows?
0
votes
5answers
55 views

Strange issue about # in url

http://localhost/test/editformquestions.php#?formid=1 And http://localhost/test/editformquestions.php?formid=1 I failed to retrieve $_GET['formid'] in the first one,why? The content of …
0
votes
3answers
47 views

How can i get some part of html using XPath?

I need to get some part of html pages using php XPath query (sorry im new to XPath). example html page <html><head>blah lines</head><body> <div id="mytable"> …

1 2 3 4 5 17 next
15 30 50 per page