Re: creating web pages with euphoria
- Posted by ShelbySue at granbury.com Feb 24, 2003
- 417 views
Hello Larry, Just a note from a beginner. The RDS archives are invaluable when you need to look at other programming topics. Also, search the forum letters. Some people mention stuff in there that they might not post to the archives site or maybe just a reference to another website somewhere. Also, make sure you distinguish what portion of this process you want. Many people have done CGI work, some servers, there is some good ftp work. Finally, vb, vbs, and other scripting sites offer wonder help that you can "easily" bring into Euphoria. Of course, to create a web page you only need to write text to a file with the tags formatted appropriately. (THIS IS 2.3 COMPILER TESTED) object fn sequence mytitle fn = open("c:\\euphoriaprogramming\\YourHTMLFILE.html","w") mytitle = "My New Web Page" puts(fn,"<html>\n<body>\n") -- \n just for format purposes puts(fn,"<TITLE>" & mytitle & "</TITLE>\n") -- \n just for format purposes puts(fn,"\n<p align=\"center\"><font size=\"2\">\n") -- notice \" for quotes puts(fn,"This site owned and maintained by <br>\n") puts(fn,"Lawrence Dechant - ") puts(fn,"<a href=mailto:lawrence_dechant at yahoo.com\">\n") puts(fn,"lawrence_dechant at yahoo.com</a></font><br>") puts(fn,"\n</p>\n") close(fn) (END) I apologize if I insult you with such an easy and simplified example. You may be beyond this. When I first began, I did not get the concept of just writing text to a file. I did not want the deluge of information to skip the most basic starting point for others that might need this boost. Others will definitely respond with more technical information. Again, this was from a beginner's perspective Joe Phillips Granbury, TX