tet3828 Posted January 31, 2008 Share Posted January 31, 2008 I have a hidden filed and I would like to pass some values that have non breaking spaces in them. how can I do this without losing data after the first space in my string ? :-\ Link to comment https://forums.phpfreaks.com/topic/88801-passing-values-with-nbsps/ Share on other sites More sharing options...
hitman6003 Posted January 31, 2008 Share Posted January 31, 2008 Not sure what you mean...but I'm going to assume that you are doing this: <input type=hidden name=something value=what you want to pass with spaces> The solution is to put quotes around your tag attributes (which happens to be the proper way)... <input type="hidden" name="something" value="what you want to pass with spaces"> If you are already doing this...then post some code, cause you've given us just slightly more than no information to help you. Link to comment https://forums.phpfreaks.com/topic/88801-passing-values-with-nbsps/#findComment-454857 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.