Page 1 of 1

dragable boxes accepts no spaces in url

PostPosted: Tue Jul 29, 2008 9:19 am
by niekvb
Nice script. but when I give an url with a space in it, it gives an error.
For instance the first works fine
createARSSBox('http://www.ikcro.nl/php/extlistthemaobjectfeed_voor.php?concept=Maatschappij',1,false,5);

But this following ones with "Ruimtelijke ordening" or "Ruimtelijke+ordening" give an error
createARSSBox('http://www.ikcro.nl/php/ext/listthemaobjectfeed_voor.php?concept=Ruimtelijke ordening',1,false,5);
createARSSBox('http://www.ikcro.nl/php/ext/listthemaobjectfeed_voor.php?concept=Ruimtelijke+ordening',1,false,5);

Niek

PostPosted: Tue Jul 29, 2008 10:56 am
by niekvb
I found the solution myself.
I have to use %20 instead of + for a space in an url.
:D
Niek