
09-11-2007, 11:46 PM
|
|
Will work for food. Maybe
|
 |
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
|
|
|
Well for one:
temp.startstring = "serverr.station";
temp.startstring is going to = serverr.station, not the value of serverr.station, because you enclosed the variable in quotations.
temp.startstring = serverr.station;
Also what Inverness said, you can't pass temp.vars from one function to another(unless you pass the temp.var in the function parameters, which you should do in this case). |
|
|
|