|
| 17 Jul 2014 10:39 PM |
I don't remember how to do this but how would I call a string from a table? Like;
tb = {id1 = "id url here"}
How would I be able to print the "id url" |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2014 10:39 PM |
| print(tb["id1"]) or print(tb.id1) |
|
|
| Report Abuse |
|
|
KEVEKEV77
|
  |
| Joined: 12 Mar 2009 |
| Total Posts: 6961 |
|
|
| 17 Jul 2014 10:40 PM |
print(id1);
or
print(tb[1]); |
|
|
| Report Abuse |
|
|
|
| 17 Jul 2014 10:40 PM |
| KEV's approach will result in an error. |
|
|
| Report Abuse |
|
|
| |
|
KEVEKEV77
|
  |
| Joined: 12 Mar 2009 |
| Total Posts: 6961 |
|
| |
|
KEVEKEV77
|
  |
| Joined: 12 Mar 2009 |
| Total Posts: 6961 |
|
|
| 17 Jul 2014 10:44 PM |
Oh dictionaries are stupid. As title statted, he was using a table. not a dictionary :P |
|
|
| Report Abuse |
|
|