-
Website
http://evansims.com/ -
Original page
http://evansims.com/tips/web-apis-by-example-part-ii-delicious -
Subscribe
All Comments -
Community
-
Top Commenters
-
Hazman Aziz
5 comments · 1 points
-
Rob Bluey
3 comments · 2 points
-
Devin Reams
6 comments · 1 points
-
edwinv
4 comments · 6 points
-
Araceli
2 comments · 2 points
-
-
Popular Threads
-
Redesigned; v2009.1
4 weeks ago · 6 comments
-
Adding a Bloom Effect to Warhammer
4 weeks ago · 3 comments
-
Terminator Salvation
4 weeks ago · 2 comments
-
Warhammer’s Abrupt End Game
4 weeks ago · 1 comment
-
Redesigned; v2009.1
nice piece of code. it works.
i altered this code by adding :
if(isset($_POST['url']) && isset($_POST['description']) && isset($_POST['tags']) && isset($_POST['extended'])) {
// Bookmark a URL
$url = urlencode(trim($_POST['url']));
$description = urlencode(trim($_POST['description']));
$extended = urlencode(trim($_POST['extented']));
$tags = urlencode(trim($_POST['tags']));
httpRequest('ssl://api.del.icio.us', '/v1/posts/add?url=' . $url . '&description=' . $description . '&tags=' . $tags. '&extended=' . $extended);
now the form also adds 'tags' to your account,
BUT : the field "extended" still remains empty.
any suggestions on how to fix this?