PDA

View Full Version : user field help


DivineMessenger
05-11-2011, 05:00 PM
I want to create a user fields where users can input their gamertag and their clan tag then build a block that will insert the fields into this image:

http://www.glop.org/gamercard/card/XXXGamertaghereXXXXi-clantag-XXClantaghereXX.png

Simple right? I agree. Problem is with spaces. I need to automatically replace spaces in the users' gamertag and replace them with "%20". Any ideas?

Lynne
05-11-2011, 07:19 PM
str_replace?

DivineMessenger
05-11-2011, 07:38 PM
how does that work? I don't want to change the way the user field appears in their profile

/{userfield1}.png

but convert all spaces in userfield1 to %20

Lynne
05-11-2011, 08:36 PM
User str_replace to replace spaces with %20. Isn't that what you were asking about doing?

DivineMessenger
05-12-2011, 12:18 AM
Yeah but on the user's profile I where it says "Gamertag" I still want the spaces to show. That's the problem. Otherwise I would just advise users to put %20 where there are spaces.

kh99
05-12-2011, 01:45 AM
How about doing the replacement when the fields get inserted into the image url?

DivineMessenger
05-12-2011, 03:23 AM
I guess the question is, how do I change it when it gets inserted into the url without changing the original field?

Lynne
05-12-2011, 10:04 PM
You would write a plugin that takes the field, uses str_replace to replace the spaces and then assigns it to a new variable name that you use for the image.

DivineMessenger
05-12-2011, 11:58 PM
Thanks Lynne. You've been a huge help.... for like 10 years lol