I don't know if it's the right place to post, but here's my question.
I have implemented those tools on some pages of my website (Add to Digg and Add to del.icio.us). All is done well, I have a webpage that can send news in PHP with the following line;
Code:
www.mysite.com/page1.php?newsid=$newsid&title=My news title
all is good in this, it retrieve the title in my database, print it after the title in the url, and once clicked, it writes down the title in the correct place.
I added this to my blog page, and the problem is that it sends 2 values
Code:
www.mysite.com/page2.php?blogid=$blogid&textid=$textid&title=My blog title
When I click on Add to digg or Add to del.icio.us, it gets the first value statement (blogid=$blogid), but ignore the second one (textid=$textid), why?
I really need to send that string in the url, otherwise, the page is blank.
How can I send more than one value in the URL when submitting page to sites like Digg and Del.icio.us?
Thanks