update other database with user info
alphaphoenix |
|
---|---|
Is there a way that I can transfer data in one table to another table with maybe a different feild name?
|
Kilandor |
|
---|---|
Not with just like a query, it would take php. Or duplicating the table and jsut renaming any rows you need, and deleting the rest
|
alphaphoenix |
|
---|---|
Well basicly what I have is the usermap plugin which is already geocoding my user adresess and is storing the lat and lon in its respective table "sed_usermap". I am trying to apply the radius search code to data in the "sed_usermap" table but the radius code is setup to use its own table which it instructed me to create "markers". So I guess the real question is should I be changing the radius search code to query the "sed_usermap" table or can I somehow push the "sed_usermap" data to the "markers" table? I am a little shaky on this type of php stuff.
|
Kilandor |
|
---|---|
Just use the Usermap table you don't have to use the exact table that was in the example
|
Kilandor |
|
---|---|
There is no PHP code there. So I can't help you. Basicly all you need to do is where it told you to query their table, query your's instead.
|
alphaphoenix |
|
---|---|
So I am down to the following xml code which is querying the markers table. I need this to query the sed_users table. Any suggestions. Also I wanted to put this on the search tpl but it does not show up when I place the code in straight or through an iframe.
|