[PHP] Re: Session Tutorial

2002-04-21 Thread R. Visser
[EMAIL PROTECTED] wrote: > Recently I have been trying to work with sessions however I must admit that > I am not sure I completely understand them. Does anyone know of a good > tutorial that thoroughly explains sessions? > Thanks in advance I can write one if you want, send me a mail. Greet

[PHP] Re: I would like to get a script to display in a frame

2002-04-21 Thread R. Visser
[EMAIL PROTECTED] wrote: > Does anyone have any experience with making script output display in a > frame?? I would like to get this to happen on an e-commerce site I am > designing and am stuck. I have tried action=myscript.php target=main> with no success. Please help. > > Jeff Means

[PHP] Re: creating table help

2002-04-21 Thread R. Visser
[EMAIL PROTECTED] wrote: > I'm very new to php and PostgreSQL. I keep getting the following error > when I try to create a table: > Warning: Wrong parameter count for pg_exec() in > /var/www/html/elkan/createtable.php on line 23 > The table, ghdsl could not be created > Here is the code I'm us

[PHP] Re: transfering a file from one host to another

2002-04-23 Thread R. Visser
Yes there is, you can use fopen() with ftp username and password like this: fopen("ftp://username:[EMAIL PROTECTED]/path/to/yourfile";, "w"); Using this you also can open files on a HTTP server with Basic Authentication, code will be then: fopen("http://username:[EMAIL PROTECTED]/path/to/your