[PHP-WIN] access database over multiple pages

2002-02-16 Thread quincy
I want to design a web application using php ,that allows the user to sign in once into the mysql database and then over the course of several pages to perform several queries on the database using their name and password. My question is how can I do this without asking the user to enter his nam

php-windows Digest 16 Feb 2002 09:54:22 -0000 Issue 1003

2002-02-16 Thread php-windows-digest-help
php-windows Digest 16 Feb 2002 09:54:22 - Issue 1003 Topics (messages 12100 through 12109): Re: PHP header to close browser window? 12100 by: Pac mon Session problem... 12101 by: Brian Feliciano 12105 by: Piotr Pluciennik 12107 by: Nicole Amashta Authorizat

[PHP-WIN] MING

2002-02-16 Thread Josh Seward
For PHP 4.0.8 I had function that converted .jpg in .swf - Ming_setScale(20); $fp = fopen($dram,"r"); $end=1000; $i = fread($fp,$end); $img = new SWFBitmap($i); fclose($fp); $m = new SWFMovie(); $m->setDimension(100,100); $m->add($img); $m->save("myURL/movie.swf"); ImageD

[PHP-WIN] Backgrounding PHP

2002-02-16 Thread Cary
Hi all. I'm new to php on Windows and to this list. This is probably a really basic question for most of you, but I've searched the web for hours trying to find an answer. Hopefully somebody here will be kind enough to clue me in. Here's the question... When running a php script from the task s

Re: [PHP-WIN] Backgrounding PHP

2002-02-16 Thread DL Neil
Hi Cary, > I'm new to php on Windows and to this list. This is probably a really basic > question for most of you, but I've searched the web for hours trying to > find an answer. Hopefully somebody here will be kind enough to clue me in. > > Here's the question... > When running a php script from

Re: [PHP-WIN] Backgrounding PHP

2002-02-16 Thread Cary
Thanks =dn ! Not only did you give me the solution but you made me feel "not so dense" in the process :-) Thanks again and hope I have a chance to help in the future. Cary At 10:42 AM 2/16/02, DL Neil wrote: >Hi Cary, > > > I'm new to php on Windows and to this list. This is probably a really

[PHP-WIN] Re: access database over multiple pages

2002-02-16 Thread Christoph Grottolo
Hi Quincy Session variables are stored on the server, not on the client, so there is no additional risk, if you don't send usernames and passwords back to the client with your script. But usually you don't need to store username/password because you don't need them in the scripts. You just store

[PHP-WIN] Re: access database over multiple pages

2002-02-16 Thread quincy
Thanks. Another related question. I know that to connect to a mysql database using php you use the following statement $link_id=mysql_connect("hostname","username","password"); My question is if the variable $link_id which is the handle to the database can persist beyond the web page that create

php-windows Digest 17 Feb 2002 01:12:32 -0000 Issue 1004

2002-02-16 Thread php-windows-digest-help
php-windows Digest 17 Feb 2002 01:12:32 - Issue 1004 Topics (messages 12110 through 12115): MING 12110 by: Josh Seward Backgrounding PHP 12111 by: Cary 12112 by: DL Neil 12113 by: Cary Re: access database over multiple pages 12114 by: Christoph Grot