[PHP] Uploading files

2001-05-20 Thread Diego Pérez Rández
Hi to all: I don`t konw very well php. I do examples everyday and solve some problems. But in other i need help. Today i want to upload a file. I have the form that you can find in the php manual. form enctype=multipart/form-data action=_URL_ method=POST input type=hidden

Re: [PHP] comparison operators

2001-05-20 Thread Diego Pérez Rández
Hi: For compare strings you can use strcmp. $st1 = hi; $st2 = bye; if (strcmp($st1, $st2)) { echo are different; } else { echo are equal; } The strcmp return 0 when the strings are equal. If the strings are diferent, return the pos of the char where begin the diference. I

[PHP] Php with Frames

2001-04-01 Thread Diego Pérez Rández
Hi to all: I have a page with two frames. In the top frame I have a form where I can select some options. When I press the send button a php program generate a html page that I want to show in the Botton frame. I don't know how I can load the new page generate in the botton frame. I

[PHP] Put data in a odbc connect

2001-01-13 Thread Diego Pérez Rández
Hi to all: I want to put data in a database that i access by a odbc connect. I can obtain data of the odbc connect, but i can't put data in it. How i can do it?. Thanks. Best Regards, Diego -- PHP General Mailing List