1
vote
3answers
63 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 …
0
votes
1answer
23 views
Massive API/Framework mashup issue (oAuth, Facebook, Twitter, Code Igniter)
Hi all,
I'm having (many, but for now,) one problem with a project I'm working on.
It is a PHP project run on Code Igniter
It is a Facebook app that wants to use oAuth Twitter a …
0
votes
3answers
36 views
iPhone get image width and size
hi all,
i am new to iPhone.
i want to get the height of a image. so i can set the frame of UIImageview accordingly.
Please suggest how can i get the original size(width and height) …
1
vote
5answers
60 views
Apache mod_rewrite and PHP GET Arrays
I want to have a url like http://localhost/folder1/folder2/folder3/file
Then i want mod_rewrite to convert it to $_GET['d'] in the url it would look like d[]=folder1&d[]=folder …
0
votes
1answer
11 views
How to keep original parameters after url_rewrite?
I'm now doing this:
rewriterule ^jobs/([0-9]+)/.* job.php?id=$1
Which will erase parameters in jobs/1010/title?k=v
How to keep them?
2
votes
3answers
66 views
How do you force a web browser to use POST when getting a url?
How do you force a web browser to use POST when getting a url?
0
votes
2answers
40 views
php function __construct() question involving this->get = $_GET
I'm working on someone's code and they have a constructor that uses:
class qwerty {
public function __construct(){
// some other code
$this->get = $_GET;
}
}
My question …
0
votes
1answer
42 views
Using # in links instead of GET params = faster?
I just noticed that say
http://s7.addthis.com/js/250/addthis%5Fwidget.js#pub=PUBID
does the equivalent of
http://s7.addthis.com/js/250/addthis%5Fwidget.js?pub=fct-250
but is m …
0
votes
2answers
70 views
How to implement Pagination?
What is the best way to implement simple pagination?
Here is the code im using to put the items from the database into a table:
$sql = "SELECT * FROM table WHERE id='id' ";
$resul …
0
votes
1answer
17 views
Getting the ID(Autonumber) after the session saved in nhibernate?
Hi i am inserting a row of data into a table through nhibernate, how to get the Id(auto number)of the last inserted row? please help me...
3
votes
1answer
37 views
javascript browser-like GET request
I need to request web page client-side and than pass it to server as a string. I tried jQuery:
$.get(
"http://example.ru/",
{name:"Joe", age:"42"},
function(data){
…
2
votes
3answers
119 views
How can I access parameters passed in the URL when a form is POSTed to my script?
I've run into an issue with mod_rewrite when submitting forms to our site perl scripts. If someone does a GET request on a page with a url such as http://www.example.com/us/florida …
0
votes
2answers
21 views
Iphone Web put and get.
All,
I need to create an app for work that signs into our website using SSL and returns our member information.
I have figured out how to log in but am not sure how to find the …
0
votes
2answers
68 views
Reset input values from GET url params using jQuery
This may seem like an odd one, but I want to be able to fill in a static web form using values passed in via a GET param list.
Say I have a page, 'self.html':
<form action="s …
0
votes
3answers
41 views
Mixing GET with POST - is it a bad practice?
Is it a bad practice to mix GET and POST? (note this is in PHP)
e.g.
<form action="delete.php?l=en&r=homepage" method="post">
<!-- post fields here -->
</form …
