Re: [PHP] Ajax+ PHP Map

2006-02-03 Thread Richard Lynch
I'm betting that Yahoo and Google both can map to just the County level, if you just don't send them street addresses as inputs... You'll need to find a canonical list of every county in every state, but I'm guessing that's a simple search: http://info.com/state+county+complete+list+official On

[PHP] Ajax+ PHP Map

2006-02-02 Thread blackwater dev
I have a client who wants to add some searching capabilities to their site. We want the searches to be cool so need to somehow provide a map of the state broken down by counties and allow people to search for items within that certain county. I wanted to do something cool with Ajax and PHP but

Re: [PHP] AJAX PHP

2005-08-29 Thread Chris Shiflett
Mikey wrote: ok, so you have html like img src=/images/graph.php name=img and you have js like // some event that triggers the script document.images['img'].location = /images/updated_graph.php; And php makes your graph. Using whatever classes you choose. Another option is to exchange the

RE: [PHP] AJAX PHP

2005-08-03 Thread Miguel Guirao
: Martes, 02 de Agosto de 2005 01:46 p.m. To: php Subject: Re: [PHP] AJAX PHP Has anyone integrated JPGraph [or another php graph class] into a PHP/AJAX setup ? I would really like to integrate interactive graphs based upon user variables. Would be fantastic. Are there any examples out

Re: [PHP] AJAX PHP

2005-08-03 Thread Graham Anderson
deep in the subject, so far I have not found resources. Thanks in advance!! -Original Message- From: Graham Anderson [mailto:[EMAIL PROTECTED] Sent: Martes, 02 de Agosto de 2005 01:46 p.m. To: php Subject: Re: [PHP] AJAX PHP Has anyone integrated JPGraph [or another php graph class

Re: [PHP] AJAX PHP

2005-08-03 Thread Mikey
Graham Anderson wrote: not a whole lot of info on the subject for working with graph classes :( at least at this point g Surely it would be much simpler to just use have javascript to set a placed image to a new (or the same) location - this image is then generated by JPGraph et al with no

Re: [PHP] AJAX PHP

2005-08-03 Thread Graham Anderson
is there an example of this somewhere ? Google does not come up with much. I have seen simple AJAX examples...but none related to graphing classes. I am a bit new at combining php with javascript with regards to image creation. basically, I want the user to enter variables and have a graph

Re: [PHP] AJAX PHP

2005-08-03 Thread Mikey
Graham Anderson wrote: is there an example of this somewhere ? Google does not come up with much. I have seen simple AJAX examples...but none related to graphing classes. I am a bit new at combining php with javascript with regards to image creation. basically, I want the user to enter

Re: [PHP] AJAX PHP

2005-08-02 Thread Graham Anderson
Has anyone integrated JPGraph [or another php graph class] into a PHP/AJAX setup ? I would really like to integrate interactive graphs based upon user variables. Would be fantastic. Are there any examples out there ? g -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-23 Thread Chris Boget
function sndReq(action) { http.open('get', 'rpc.php?action='+action); http.onreadystatechange = handleResponse; http.send(null); } So with AJAX, the data gets sent back to the browser using GET? Is there any way you can do it using POST? thnx, Chris -- PHP General Mailing List

Re: [PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-23 Thread Rasmus Lerdorf
Chris Boget wrote: function sndReq(action) { http.open('get', 'rpc.php?action='+action); http.onreadystatechange = handleResponse; http.send(null); } So with AJAX, the data gets sent back to the browser using GET? Is there any way you can do it using POST? The prototype for the

Re: [PHP] AJAX PHP

2005-07-23 Thread Brian V Bonini
On Thu, 2005-07-21 at 08:23, Marco Tabini wrote: We had a webcast on PHP and Ajax a while back--the recordings are still available for free at http://blogs.phparch.com/mt/index.php?p=49. Nice, totally crashes Firefox in Linux. -- s/:-[(/]/:-)/g BrianGnuPG - KeyID: 0x04A4F0DC | Key

Re: [PHP] AJAX PHP

2005-07-23 Thread John Browne
Hmm.. Works for me. Firefox 1.0.6 on gentoo. On 7/23/05, Brian V Bonini [EMAIL PROTECTED] wrote: On Thu, 2005-07-21 at 08:23, Marco Tabini wrote: We had a webcast on PHP and Ajax a while back--the recordings are still available for free at http://blogs.phparch.com/mt/index.php?p=49.

Re: [PHP] AJAX PHP

2005-07-23 Thread Greg Donald
On 7/23/05, Brian V Bonini [EMAIL PROTECTED] wrote: On Thu, 2005-07-21 at 08:23, Marco Tabini wrote: We had a webcast on PHP and Ajax a while back--the recordings are still available for free at http://blogs.phparch.com/mt/index.php?p=49. Nice, totally crashes Firefox in Linux. Works fine

Re: [PHP] AJAX PHP

2005-07-23 Thread blackwater dev
Yep, I integrated it into one of our in house apps a few weeks back just to try it out and it worked ok. Nothing special, just allowed a user to put in a name in a search box and the js called a php script which did a lookup into the db and returned the results as the user typed but worked well

Re: [PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-22 Thread Rasmus Lerdorf
Richard Lynch wrote: On Thu, July 21, 2005 3:50 pm, Rasmus Lerdorf said: I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became AJAX. And it really Call me silly, but... Didn't a LOT of us move a bunch of code to PHP

Re: [PHP] AJAX PHP

2005-07-21 Thread Paul Waring
On Thu, Jul 21, 2005 at 11:22:25AM +0530, balwant singh wrote: Have anybody tried PHP AJAX, may please share your experience. also pls. suggest good link of tutorial on this. I haven't tried it myself, but this looks rather good, article on how to implement Google Suggest in PHP:

Re: [PHP] AJAX PHP

2005-07-21 Thread Joe Harman
Yeah, AJAX is really going to change the way web applications are made... I've messed around with the tutorials with it... I've also seen it referred to as XMLHttpRequest .. I think the AJAX class transforms your PHP functions into javascript... seems like the class is just made to for people

Re: [PHP] AJAX PHP

2005-07-21 Thread Marco Tabini
We had a webcast on PHP and Ajax a while back--the recordings are still available for free at http://blogs.phparch.com/mt/index.php?p=49. Also you may want to try looking for Ajax here: http://beeblex.com/ajax (it's a new search engine I just put online, so I thought I'd take the opportunity for

Re: [PHP] AJAX PHP

2005-07-21 Thread Brent Baisley
Started playing with it about two months and have now integrated it into my project. Makes things a lot easier and much more dynamic. No more round trips to the server just to mark an action as completed or other simple things that normally required a refresh. You can do dynamic lookups

Re: [PHP] AJAX PHP

2005-07-21 Thread Ben Liu
I've been tinkering with AJAX for a few weeks now. I've used it in a simple user registration system form. Instead of submitting a desired username and waiting for a round trip to the server to verify that the username is not already in use, I used AJAX to perform the DB query in the

[PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-21 Thread Rasmus Lerdorf
I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became AJAX. And it really isn't as complicated as a lot of people make it out to be. Here is a simple example from one of my apps. First the Javascript: function

[PHP] Re: Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-21 Thread Joe Harman
Hey Rasmus, Well said! Thanks for the example to... I am sure I am going to refer to it more than a few times... The AJAX/XMLHttpRequest was more an ephiphony for me than anything else Since the only references I have that are related to PHP or any other server side scripting languages is

Re: [PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-21 Thread Richard Lynch
On Thu, July 21, 2005 3:50 pm, Rasmus Lerdorf said: I find a lot of this AJAX stuff a bit of a hype. Lots of people have been using similar things long before it became AJAX. And it really Call me silly, but... Didn't a LOT of us move a bunch of code to PHP instead of JS because JS was so

Re: [PHP] Rasmus' 30 second AJAX Tutorial - [was Re: [PHP] AJAX PHP]

2005-07-21 Thread Duncan Hill
On Friday 22 July 2005 02:46, Richard Lynch wrote: If you NEED it to work, JS is simply not the right way to go, even with today's landscape. I think that depends on whether you have a closed environment, such as an intranet, or an open environment like a public web server. In the public

[PHP] AJAX PHP

2005-07-20 Thread balwant singh
Have anybody tried PHP AJAX, may please share your experience. also pls. suggest good link of tutorial on this. With Best Wishes Balwant Singh -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php