[REBOL] Re: help
From: anton:lexicon at: 24-Oct-2002 14:02
This might help start you off:
page: read
http://www.telstraclear.co.nz/products/television/saturn-tv/your_tv_guide.cf
m
parse page [
to {<form name="tvguide"}
some [
thru {option value="} copy n to {"} (?? n)
thru ">" copy name to "<" (?? name)
]
]
After some work and you get out the information,
then you need to http POST your preferred options
and read the resulting page. There is a http-post.r
script in the script library that I am sure I used
successfully before. Then you need to parse that
page.
Anton.