flash/php/mysql
flash/php/mysql
Out of context: Reply #4
- Started
- Last post
- 5 Responses
- caseyc0
You could just store your coords in a string...
x|y,x|y,x|y
Then
mycoords = phpstring.split(",");
for (var i in mycoords)
{
mycoords[i] = mycoords[i].split("|");
}