Buffistas Building a Better Board
Do you have problems, concerns or recommendations about the technical side of the Phoenix? Air them here. Compliments also welcome.
How would it be if I coded up some JavaScript which put a button neart the tagline box on the profile page which said "check tagline length" or similar?
This would be very cool.
Yay! Dai got it!
How would it be if I coded up some JavaScript which put a button neart the tagline box on the profile page which said "check tagline length" or similar?
I'm OK with that, but I've never been anti-javascript. Is there some string-length function in PHP? I've been studying the Phoenix code this past weekend (I wrote a threadsuck!), and it seems like it wouldn't be to difficult to code with PHP, if I knew how to use that function.
I do know how to copy and paste. I've never had any trouble posting links on other discussion sites.
Oh, I deleted once I realized I misread both parts of your question and made you sound dumb. Sorry you read it.
wouldn't it be a lot easier if there were links to the search function, as on worldcrossing, and AFAIK on most other discussion sites?
The search function is still in beta. ita doesn't want it widely used until she's worked out some kinks.
Dai, the search function is in beta, which is why it isn't on every page yet.
Jon -- strlen($tagline) will count the number of characters in the string.
it seems like it wouldn't be to difficult to code with PHP, if I knew how to use that function
that would be the strlen() function, and it's just
strlen(whatever)
but the good thing about the JavaScript version is you wouldn't need a hit on the server to get the answer, it would come up instantaneously in a dialog.
After all, you can see if it's over the set length by submitting the form and seeing if some of it disappears.
Anyway, see [link] for the idea in action.
I see. All right then, I'll wait until the kinks have been dekinked. And if I've sounded ungrateful, believe me I'm not.
Jon -- strlen($tagline) will count the number of characters in the string.
Excellent. Let me work on it (unless someone else wants to...?).