# Flash/jsp/mysql and double spacing

**URL:** https://forum.kirupa.com/t/flash-jsp-mysql-and-double-spacing/81747
**Category:** Uncategorized
**Created:** [March 4, 2005, 4:32pm UTC](https://forum.kirupa.com/t/flash-jsp-mysql-and-double-spacing/81747 "2005-03-04T16:32:43Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![projectbios](https://avatars.discourse-cdn.com/v4/letter/p/e95f7d/32.png) [@projectbios](https://forum.kirupa.com/u/projectbios)
#### Post date: [March 4, 2005, 4:32pm UTC](https://forum.kirupa.com/t/flash-jsp-mysql-and-double-spacing/81747/1 "2005-03-04T16:32:43Z")

</div>

So for some reason flash is double spacing my db content.  
I’m not sure why either.

When i go to my jsp page directly it looks like this.

myMonth=blah,blah,blah,blah,blah,blah,blah,blah,blah,blah,blah

there isnt any spaces, just a string. when i import it into flash there is a double/triple space between every “blah”.

here is my flash code.

does anyone know why im getting double spaces?

```auto

var dateVars = new LoadVars();
dateVars.onLoad = function(ok) {
if (ok) {
text1.text = dateVars.myMonth;
}
};
dateVars.load("[http://localhost:8080/testingground/instructionslist.jsp](http://localhost:8080/testingground/instructionslist.jsp)");

```
