[PHP-WIN] Re: Register Globals

2003-10-20 Thread DvDmanDT
That depends on if you use the globals or not And if you don't, no use to have it turned on... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Just out of curiosity, if I was to work with register_globals set to on

php-windows Digest 20 Oct 2003 23:50:02 -0000 Issue 1966

2003-10-20 Thread php-windows-digest-help
php-windows Digest 20 Oct 2003 23:50:02 - Issue 1966 Topics (messages 21830 through 21840): Re: Include and require 21830 by: David Felton 21833 by: Rinku Shivnani 21834 by: manon 21835 by: Luis Moreira Mail with Word attachment 21831 by: George Pitch

[PHP-WIN] Register Globals

2003-10-20 Thread Trystano
Just out of curiosity, if I was to work with register_globals set to on (on my home/testing/devel server), and then transfer my scripts across to a hosting server for them to be run live, will my scripts run if the PHP.ini file is configured to have register_globals set to off? Tryst -- PHP W

Re: [PHP-WIN] Re: can not get variable value from HTML form

2003-10-20 Thread joe
instead of using $username use $_POST['username'] sounds to me like you have register globals off on your devel machine and turned on on your production machine... From what i am told it is best to develop with register globals OFF i always config my php to have that off. Joe On Wed, 31 Dec 1969

Re: [PHP-WIN] Problem with $GLOBALS

2003-10-20 Thread joe
can you explain why register globals is a big security risk?? if you have register globals on and a user goes to http://www.site.com/index.php?visitor=10 $visitor is set to 10 so yes they can change the integer for visitor but even with register globals off they can change it there too. cause you

[PHP-WIN] Re: PHP 5 And Apache2.0.47

2003-10-20 Thread tim sawyers
I did a clean install of windows XP so no version of php was running. I did try just changing the looadModule to PHP4, which gave me an error "module not found". I did try every way of loading php-sapi I could find in the decimation including dropping php4ts.dll in the sapi directory. >From an e

[PHP-WIN] Re: Mail with Word attachment

2003-10-20 Thread Manuel Lemos
Hello, On 10/20/2003 08:44 AM, George Pitcher wrote: Hi all, I need to send MS Word attachments from PHP (they're built on the fly). I've tried PHPMailer but that doesn't like my NT box so I've gone back to php's mail() function. I'm using the following script but and the attachment is in the sa

Re: [PHP-WIN] Include and require

2003-10-20 Thread Luis Moreira
Browse through http://ww.php.net , search and read the documentation. If you do that and search for "include", for instance, you will find The documentation below also applies to require(). The two constructs are identical in every way except how they handle failure. include() produces a Warning wh

[PHP-WIN] RE: Include and require

2003-10-20 Thread manon
Difference is in the way they handle a failure.Require gives a fatal error and processing of the page halts, while include continues processing the page. More info in the PHP online manual http://www.php.net/docs.php -Oorspronkelijk bericht- Van: Rinku Shivnani [mailto:[EMAIL PROTECTED] V

RE: [PHP-WIN] Include and require

2003-10-20 Thread Rinku Shivnani
Hi David, Can you explain me the same thing with some examples.. Pls. Regards, Rinku -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] SID in LDAP

2003-10-20 Thread Gísli
How can I get Unique ID from each user in LDAP, like the sid. Because I´m making an database that stores every user Unique ID. Please Reply !!! -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Mail with Word attachment

2003-10-20 Thread George Pitcher
Hi all, I need to send MS Word attachments from PHP (they're built on the fly). I've tried PHPMailer but that doesn't like my NT box so I've gone back to php's mail() function. I'm using the following script but and the attachment is in the same webfolder as the script but when I check the email

RE: [PHP-WIN] Include and require

2003-10-20 Thread David Felton
if an include fails for whatever reason the script will continue executing and just issue a warning. If a require fails the script will throw an error and exit (it won't execute the remainder of the script). -Original Message- From: Rinku Shivnani [mailto:[EMAIL PROTECTED] Sent: 20 October

php-windows Digest 20 Oct 2003 10:21:45 -0000 Issue 1965

2003-10-20 Thread php-windows-digest-help
php-windows Digest 20 Oct 2003 10:21:45 - Issue 1965 Topics (messages 21823 through 21829): ADSI - PHP 21823 by: Pc Technics, Inc. @ symbol 21824 by: Alan McDonald 21825 by: DvDmanDT 21826 by: Alan McDonald Re: PDF creation on the fly. 21827 by: Rahm

[PHP-WIN] Include and require

2003-10-20 Thread Rinku Shivnani
Dear All, Can any of you tell me what is the difference between include and require ? Regards, Rinku -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php