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 T
Mikey wrote:
ok, so you have html like
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 images (using the JavaScript Mike
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 varia
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
ge
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
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 c
: 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 t
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, visit:
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 wi
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.
Wo
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.
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 | K
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 proto
> 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
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 t
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
ca
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
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 (
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 createRequestObject
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 backgr
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 bas
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 s
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
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:
http://t
24 matches
Mail list logo