Blackie

msg:1266317 | 8:06 am on Jun 28, 2005 (gmt 0) |
What is it exactly that you have problem with? Generating of url or visiting it (you can use header("Location: http://www.example.com/"); ) for this purpose?
|
ajs83

msg:1266318 | 1:38 am on Jun 30, 2005 (gmt 0) |
I don't know how I would set up the code to "ping" the url everytime there is a new item entered into the database. I know what code to use to actually execute the ping (header location), but not how to execute the command that tells it to do it.
|
Blackie

msg:1266319 | 7:09 am on Jun 30, 2005 (gmt 0) |
What is the purpose? What are you trying to achive?
|
ajs83

msg:1266320 | 7:03 am on Jul 2, 2005 (gmt 0) |
Everytime a specific action occurs, a url of mine is pinged with the new data which then gets inserted into a database. From there I would like to ping another url with the new database information from that entry.
|
ajs83

msg:1266321 | 11:01 pm on Jul 3, 2005 (gmt 0) |
bump
|
copongcopong

msg:1266322 | 4:22 am on Jul 4, 2005 (gmt 0) |
try to add your pinger code after the insert part in the database ... mysql_query("insert .... statement"); if(mysql_insert_id() > 0){ your ping script here ... }
|
|