Community Page
- evansims.com Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- I just recently made the switch and damn, I dont know why i didnt make the switch sooner
- Evan, you use Mac at all?
- I do indeed; we have a Mac Pro and a Macbook Air here in the house. The vast majority of my work requires me to work in Windows however, so that's why I end up with posts like this more often...
- Hmm, very weird. Try loading it up in Safari and see if you get the same result.
- Hi Evan - I noticed the widget is wallpapering entries with the service icon. Is this new? Is it by design? I think it's hideously busy and would love a way to fix it. I noted that yours is...
7 months ago
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?