Author |
Message |
Thomas Boute #1 / 13
|
 CGI Programming in BASIC
Hello, Is there any interest here in the possibility of being able to write CGI programs for the web in BASIC? I don't want to explain what CGI is in this particular message because that would probably skew the response considerably. Well, OK, I won't be such a jerk: http://www.*-*-*.com/ Is a good FAQ about the WWW that explains CGI along with many other things. -T
|
Mon, 20 Jul 1998 03:00:00 GMT |
|
 |
Vincent L. Holma #2 / 13
|
 CGI Programming in BASIC
Hello, I was wondering if there was any way to print a fake dir up on the screen like... C:> without is coming out looking like C:>? I hate that damn ?. Can someone please help me out
|
Mon, 20 Jul 1998 03:00:00 GMT |
|
 |
Egbert Zijlem #3 / 13
|
 CGI Programming in BASIC
Quote: >Hello, >I was wondering if there was any way to print a fake dir up on the screen >like... >C:> >without is coming out looking like >C:>? >I hate that damn ?. Can someone please help me out
Which BASIC do you use? I don't recognize the problem -- Egbert Zijlema PO-box 60, NL-9700 MC GRONINGEN
Voice: +31 50 5844275 Fax: +31 50 5844308
|
Tue, 21 Jul 1998 03:00:00 GMT |
|
 |
Marnix Exspectc Ja #4 / 13
|
 CGI Programming in BASIC
: Hello, : I was wondering if there was any way to print a fake dir up on the screen : like... : C:> : without is coming out looking like : C:>? : I hate that damn ?. Can someone please help me out I suppose you're using the INPUT-statement: Input "What's your name ";Name$ will print the question mark whereas Input "What's your name",Name$ won't. So you a comma instead of a semicolon. Marnix.
|
Tue, 21 Jul 1998 03:00:00 GMT |
|
 |
ss #5 / 13
|
 CGI Programming in BASIC
When you input something, just do this: INPUT "C:>", YourVariable$ The comma at the end gets rid of the "?" DanTheMan$
|
Wed, 22 Jul 1998 03:00:00 GMT |
|
 |
Jim Williamso #6 / 13
|
 CGI Programming in BASIC
Quote: > Is there any interest here in the possibility > of being able to write CGI programs for the web > in BASIC?
yes. specifically how to write a gif (like a counter, for example) from data statements. ------------------------------------------------
Wargame Director, Double Exposure inc. http://www.io.com/~doublex/ ------------------------------------------------
|
Thu, 23 Jul 1998 03:00:00 GMT |
|
 |
Jose Fernand #7 / 13
|
 CGI Programming in BASIC
Quote:
> Hello, > I was wondering if there was any way to print a fake dir up on the screen > like... > C:> > without is coming out looking like > C:>? > I hate that damn ?. Can someone please help me out
In stead of: input "C:>"; a$ use: input "C:>", a$ Simple! Regards, -- ---------------------------------------------------------------------- Jose Fernando Baldo Caneiro Sao Paulo, SP - BRAZiL
ANSi & ASCii ARTiST - Head Banger - In-line Skater - QBasic Programmer ----------------------------------------------------------------------
|
Fri, 24 Jul 1998 03:00:00 GMT |
|
 |
Jose Fernand #8 / 13
|
 CGI Programming in BASIC
Quote:
> Hello, > I was wondering if there was any way to print a fake dir up on the screen > like... > C:> > without is coming out looking like > C:>? > I hate that damn ?. Can someone please help me out
In stead of: input "C:>"; a$ use: input "C:>", a$ Simple! Regards, -- ---------------------------------------------------------------------- Jose Fernando Baldo Caneiro Sao Paulo, SP - BRAZiL
ANSi & ASCii ARTiST - Head Banger - In-line Skater - QBasic Programmer ----------------------------------------------------------------------
|
Fri, 24 Jul 1998 03:00:00 GMT |
|
 |
David G. McDivi #9 / 13
|
 CGI Programming in BASIC
I never use INPUT, but always LINE INPUT. LINE INPUT "type stuff here -----------> ";A$ When reading sequential files, use LINE INPUT# 1,A$ then parse out the string.
|
Sun, 26 Jul 1998 03:00:00 GMT |
|
 |
Eric Ca #10 / 13
|
 CGI Programming in BASIC
Re: NEEd Some BASIC help Quote: > Path: allinux2.alliance.net!uunet!in1.uu.net!nntp.news.primenet.com!news.prim
> Newsgroups: comp.lang.basic.misc > Subject: NEEd Some BASIC help > Date: 1 Feb 1996 16:55:02 -0700 > Organization: Primenet Services for the Internet > Lines: 11
> X-Posted-By: ip21-026.phx.primenet.com > X-Mailer: Mozilla 2.0b5 (Win16; I) > MIME-Version: 1.0 > Content-Type: text/plain; charset=us-ascii > Content-Transfer-Encoding: 7bit
You wanted to know how to ask something without that little question mark? ( C:> instead of C:>? ) Just use a comma in place of the ; ex.. INPUT "C:\",A$ You can also use LINE INPUT Later, ~The Car~
|
Thu, 30 Jul 1998 03:00:00 GMT |
|
|