php-windows Digest 20 Sep 2001 19:43:50 -0000 Issue 764 Topics (messages 9430 through 9436): how can I use or run a php sample? 9430 by: Burak Delice 9431 by: Arron Edwards Okay.. 9432 by: Burak Delice Install PHP with Sockets on Win2000? 9433 by: Benjamin Schmuhl Re: IIS admin dlls? 9434 by: Elias Santiago Re: Applying the memory-limit patch 9435 by: Elias Santiago creating ZIP files 9436 by: Raphael Pirker Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post to the list, e-mail: [EMAIL PROTECTED] ----------------------------------------------------------------------
hi, I have been making some tests. I want to learn PHP. But I have not achived to run a php sample like below. Actually I want to make a mail sender on my web page with php. I have found a sample about it but I couldn't run it so I decided to learn php as far as possible. <html> <head> <title>Example</title> </head> <body> <?php echo "Hi, I'm a PHP script!"; ?> </body> </html> (I save it above code as html, but it have not run. also when I run a .php file directly by writing adress bar n explorer it have not run only It was seemed as text.) I am raw and new at this topic. I need information begining to first. I have searched thoroughly internet but I confused. Should I install php or apache or some other program on my system in order to use PHP code in my web pages? Could you help me please? How can I start for learning php? thanks. my system w2000 professional and Internet service manager is installed
you need to install php http://www.php.net/downloads.php You most probably want the 700k install, it should work with your server, else you want the next one above to give you all you need (4meg). The 700k install sets up most servers, and should do yours. Then simply run your server with the php file in the dir the server points to then: http://localhost/yourphpfile.php and it should work. and to kill the html just put: <?PHP echo "Hello Burak"; ?> or what ever you like.. neo =) "Burak Delice" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi, > > I have been making some tests. I want to learn PHP. But I have not achived > to run a php sample like below. Actually I want to make a mail sender on my > web page with php. I have found a sample about it but I couldn't run it so I > decided to learn php as far as possible. > > <html> > <head> > <title>Example</title> > </head> > <body> > <?php echo "Hi, I'm a PHP script!"; ?> > </body> > </html> > (I save it above code as html, but it have not run. also when I run a .php > file directly by writing adress bar n explorer it have not run only It was > seemed as text.) > > I am raw and new at this topic. I need information begining to first. I > have searched thoroughly internet but I confused. > Should I install php or apache or some other program on my system in order > to use PHP code in my web pages? > Could you help me please? How can I start for learning php? > > thanks. > > my system > w2000 professional and > Internet service manager is installed > >
I did it ! Thank you Tony, Lian and Arron.... "Burak Delice" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > hi, > > I have been making some tests. I want to learn PHP. But I have not achived > to run a php sample like below. Actually I want to make a mail sender on my > web page with php. I have found a sample about it but I couldn't run it so I > decided to learn php as far as possible. > > <html> > <head> > <title>Example</title> > </head> > <body> > <?php echo "Hi, I'm a PHP script!"; ?> > </body> > </html> > (I save it above code as html, but it have not run. also when I run a .php > file directly by writing adress bar n explorer it have not run only It was > seemed as text.) > > I am raw and new at this topic. I need information begining to first. I > have searched thoroughly internet but I confused. > Should I install php or apache or some other program on my system in order > to use PHP code in my web pages? > Could you help me please? How can I start for learning php? > > thanks. > > my system > w2000 professional and > Internet service manager is installed > >
I can't seem to find a way to install PHP with sockets on Win2000 without having a compiler -- is there another way?
Do you still have that PHP3 file? Maybe it could help in what I'm trying to accomplish... "Frank M. Kromann" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I have a documentation item on my todo list. I have no plans to extend the module with functions for user management though. > > What kind of management did you want ? I have an old PHP3 extension I used to read user and group information from the SAM database. Is this what you are looking for ? > > - Frank > > > Has anyone worked with the IIS func module? > > > > I'm interested to know if there is any progress with this module, I would > > like to manage IIS/NT users thru PHP and was hoping that this module could > > help me in this area. > > > > I notice that the php_iisfunc.dll is still included in the extentions > > directory. PHP.net does not even document how to use it. > > > > > > > > -- > > PHP Windows Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > > > >
Sorry, what memory limit? "Gaylen Fraley" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > I've looked for instructions on this but have been unable to find them. How > do you apply the memory-limit patch for 4.0.6 on Windows? > > -- > Gaylen > [EMAIL PROTECTED] > http://www.gaylenandmargie.com > PHP KISGB v1.1 Guestbook http://www.gaylenandmargie.com/publicscripts > > >
Hi Guys, Is there any way I can create a zip file from files? (filenames and their paths will be specified in an array) Any help would be very much appreciated! TIA, Raphael