1. creating web pages with euphoria
- Posted by lawrence_dechant at yahoo.com Feb 24, 2003
- 433 views
--0-1428348810-1046097182=:61325 Hi, I am new to euphoria and was wondering if you can create web pages with euphoria and if there is any special programs you need. Where can I get the win32lib.doc at? thanks Larry <P>Hi, I am new to euphoria and was wondering if you can create web pages with </P> <P>euphoria and if there is any special programs you need. Where can I get the win32lib.doc at?</P> <P> </P> <P>thanks</P> <P>Larry</P><p><br><hr size=1>Do you Yahoo!?<br> <a href="http://rd.yahoo.com/finance/mailtagline/*http://taxes.yahoo.com/">Yahoo! Tax Center</a> - forms, calculators, tips, and more --0-1428348810-1046097182=:61325--
2. Re: creating web pages with euphoria
- Posted by ShelbySue at granbury.com Feb 24, 2003
- 418 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
3. Re: creating web pages with euphoria
- Posted by ShelbySue at granbury.com Feb 24, 2003
- 414 views
Okay, I had some stuff out of place. It works best if you COMPLETELY test the results. Joe and Audrey Phillips Granbury, TX
4. Re: creating web pages with euphoria
- Posted by jonas at skehus15.ac Feb 24, 2003
- 439 views
Hello Joe Philips Don't apologize, wei need more from a beginner's perspective /j-s "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"
5. Re: creating web pages with euphoria
- Posted by Dan Moyer <DANIELMOYER at prodigy.net> Feb 26, 2003
- 430 views
Lawrence, When you download & unzip Win32Lib into a directory, the docs are put into a sub-directory named "Docs"; some versions of Win32Lib have the documents divided into many parts, so the "main" doc to look at would be: "win32lib.htm". Dan Moyer ----- Original Message ----- From: <lawrence_dechant at yahoo.com> To: "EUforum" <EUforum at topica.com> Subject: creating web pages with euphoria > > > Hi, I am new to euphoria and was wondering if you can create web pages with > > euphoria and if there is any special programs you need. Where can I get the win32lib.doc at? > > > thanks > > Larry > > > <P>Hi, I am new to euphoria and was wondering if you can create web pages with </P> > <P>euphoria and if there is any special programs you need. Where can I get the win32lib.doc at?</P> > <P> </P> > <P>thanks</P> > <P>Larry</P><p><br><hr size=1>Do you Yahoo!?<br> > <a href="http://rd.yahoo.com/finance/mailtagline/*http://taxes.yahoo.com/">Yaho o! Tax Center</a> - forms, calculators, tips, and more > > > > TOPICA - Start your own email discussion group. FREE!