the
LWP::Simple get function returns a scalar, not an array.
To work the way you want it to you should add a
split
to break apart the get with each line as an array element.
@html=split "\n",get("http://setiathome.ssl.berkeley.edu/stats/team/te
+am_2414.html");