Quisiera saber como se hace un programa CGI, para leer un formulario html y
enviar su contenido por email en un servidor Windows (IIS).
¿ How to make a CGI program in pascal, that read and send for e-mail the
Html form content ?
Gracias.
Thanks.
Att.
Luis Del Aguila
On Sat, 25 Jan 2003, John Coppens wrote:
> Hi all...
>
> I've been needing quick & dirty graphing capability, and I'm missing the
> old graph library. I know - I have the graph lib working, but the frequent
> swaps in and out of X11 are not really very comfortable.
>
> As is, I have not found an
On zaterdag, jan 25, 2003, at 00:15 Europe/Brussels, Jilani Khaldi
wrote:
Does FPC support open arrays?
I get an error compiling something like this:
type
m = array of integer;
but it works fine if I declare it inside a procedure or a function:
procedure OpenArray(var m: array of integer);
On Sat, 25 Jan 2003, Jilani Khaldi wrote:
> Hi All,
>
> Does FPC support open arrays?
> I get an error compiling something like this:
>
> type
> m = array of integer;
This is a dynamic array, not an open array.
Dynamic arrays are supported in version 1.1.
>
> but it works fine if I declare i
On Mon, 27 Jan 2003 14:19:56 +0100 (W. Europe Standard Time)
Michael Van Canneyt <[EMAIL PROTECTED]> wrote:
>
>
> On Sat, 25 Jan 2003, John Coppens wrote:
>
> > Hi all...
> >
> > I've been needing quick & dirty graphing capability, and I'm missing
> > the old graph library. I know - I have the
On Sun, Jan 26, 2003 at 10:36:00AM -0500, Luis Del Aguila wrote:
> ¿ How to make a CGI program in pascal, that read and send for e-mail the
> Html form content ?
Look at the User's Guide, chapter 11.
There's also an unCGI Unit around.
HTH
--
Tschuess
Andreas
__
On Sun, Jan 26, 2003 at 12:53:25PM +0100, Marco van de Voort wrote:
> This is an dynamic array, and is supported only in 1.1 (the next big
> version currently in development)
>
> > but it works fine if I declare it inside a procedure or a function:
> >
> > procedure OpenArray(var m: array of i
On Mon, 27 Jan 2003, John Coppens wrote:
> On Mon, 27 Jan 2003 14:19:56 +0100 (W. Europe Standard Time)
> Michael Van Canneyt <[EMAIL PROTECTED]> wrote:
>
> >
> >
> > On Sat, 25 Jan 2003, John Coppens wrote:
> >
> > > Hi all...
> > >
> > > I've been needing quick & dirty graphing capability, and
> On Sun, Jan 26, 2003 at 12:53:25PM +0100, Marco van de Voort wrote:
>
> > >
> > > procedure OpenArray(var m: array of integer);
> >
> > This is an open array, and those are supported in both 1.0.x and 1.1.
> >
> > So these are two different features (even though the syntax is
> > similar)
>