#!usr/bin/ruby#Funcion toma()#Coded By Doddy Hrequire "net/http"def toma(web) return Net::HTTP.get_response(URI.parse(web)).bodyend code = toma("http://127.0.0.1/post.php")print code#The End ?