Re: [PHP] passing an array in a link

2002-08-11 Thread B.C. Lance
from my experience, you don't really have to worry much on the space issue. & is the delimiter to determine that the string terminates and a new argument begins next. and very often, the browser will do an auto conversion from space to %20 when you click on the link. David T-G wrote: > > so

Re: [PHP] passing an array in a link

2002-08-11 Thread David T-G
Bas, et al -- ...and then Bas Jobsen said... % % print "link" ; I tried this and my link the looks like Click here to go round again (that is, not only have I not taken care of the spaces but I now also lose the fact that these are part of $keylist). The entire little script is attached.

Re: [PHP] passing an array in a link

2002-08-11 Thread Bas Jobsen
print "link" ; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] passing an array in a link

2002-08-11 Thread David T-G
Hi, all -- I collect field keys in an array that looks like $keylist = array('comment','job','spaced out key name','foo',...) ; and would like to pass the array to myself in a call like print "link" ; but when it's actually run it of course says ...keylist=Array... which is quite bad.