#!/usr/bin/python
import web
urls = (
'/(.*)', 'hello',
)
app = web.application(urls, globals())
class hello:
def GET(self, name):
return 'Hello, world! ' + name
if __name__ == "__main__":
app.run()
**********************************************
It works now.
I used to do like @Anand said in the other days, but it didn't work.
But now is really work.
Thank you very much everybody~~
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"web.py" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [email protected]
For more options, visit this group at http://groups.google.com/group/webpy?hl=en
-~----------~----~----~----~------~----~------~--~---