[PHP] PDFLib

2002-03-10 Thread Evan Nemerson
From http://www.pdflib.com/pdflib/faq.html: This demo stamp appears when one of our binaries distributed by PDFlib GmbH is used. It can be disabled by purchasing a PDFlib license, and applying the delivered license key (serial) at runtime with the PDF_set_parameter() function as indicated in

[PHP] Different field sizes!

2002-03-10 Thread hauger.itg
Hello, I 've a question: If I select data from a mysql database in the www with the php script to show it on my web site, I get different field sizes in the same coloumn. It's a format problem but I don't no which one. Has anybody the solution to my question? Best regards Innovations- und

[PHP] Execute bash shell script in php

2002-03-10 Thread Neal Dewing
Amit, $output = shell_exec(./checklist'); echo nl2br($output); Works great, Neal -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] exec() fails?

2002-03-10 Thread samug
Hi, I'm quite new to php and I'm trying to execute a file with exec(executable.exe); and nothing happens. I have win2k with apache 1.3.23 and php 4.1.1 (ISAPI). I read somewhere that running external programs with isapi is impossible. Is that true? I can still run system commands, i.e. system(dir

Re: [PHP] apache and php installation problem

2002-03-10 Thread Chris Hewitt
Duncan, Just a thought, does the user that apache is running as have permissions to read/execute the file? Regards Chris Duncan wrote: Hi, i currently installed latest apache and php on my RH 7.2 system. However, i allways get the following error now: /usr/local/apache/bin/apachectl

php-general Digest 10 Mar 2002 14:53:55 -0000 Issue 1218

2002-03-10 Thread php-general-digest-help
php-general Digest 10 Mar 2002 14:53:55 - Issue 1218 Topics (messages 87892 through 87902): Re: Selecting a Queried Row 87892 by: Stephano Mariani 87893 by: hugh danaher Can anyone tell me which mail server is good???(Use in WindowsME/XP, don't use IIS) 87894 by:

[PHP] newbie: the superglobal $_SESSION

2002-03-10 Thread bob
In mannual,it says: creating new entries in the $_SESSION array will automatically register them as session variables, as if you called session_register(). If you are using $HTTP_SESSION_VARS/$_SESSION, do not use session_register(), session_is_registered() and session_unregister() unless you

[PHP] PHP/Apache/Windows question

2002-03-10 Thread George E. Papadakis
Hello , I am using PHP 4.x on Windows/Apache 1.3.x. Using the same confing on Linux , I can get something like index.php/something/anotherSomething/blah blah. Trying to do this windows just failes. I think it has to do with Apache look back feature which for some reason is not working on

[PHP] Re: CSS Group

2002-03-10 Thread Shu Chow
Can anyone recommend a good CSS news group? Eric Meyer, author of O'Reilly's CSS book and keeper of Web Review's master list runs an excellent CSS mailing list. http://two.pairlist.net/mailman/listinfo/css-discuss -- Shu-Wai Chow, Iron Chef Sloppy Joes :: [EMAIL PROTECTED] Extremism in the

[PHP] MySQL and apostrophes, interesting problem. 42082

2002-03-10 Thread Nick Patsaros
I'm working with a simple form which submits field data to a MySQL database. This is for the purpose of generating a dynamic news page for my site. Interestingly enough I've found that any time I try to submit data that contains an apostrophe ' it gives me an error and will not send the data

[PHP] problem

2002-03-10 Thread Roman
Hello, i got the following problem: i'm using linux/redhat7.2/apache/php php was working good, but as i changed the files in the /var/www/ directory my the following error occured: (shortened:) warning...failed for inclusion index.php ...(include path=/usr/share/php/:/php/includes/)...unknown in

[PHP] Re: [PHP-DB] MySQL and apostrophes, interesting problem. 42082

2002-03-10 Thread Robert Weeks
See the manual at php.net: addslashes() stripslashes() I've found it easier to just turn on magic-quotes in the php.ini file This is all covered at php.net Robert - Original Message - From: Nick Patsaros [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]

Re: [PHP] newbie: the superglobal $_SESSION

2002-03-10 Thread Matt Schroebel
?php add a session_start() here if (!isset($_SESSION['count'])) { $_SESSION['count'] = 0; } else { $_SESSION['count']++; } echo $count; ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] MySQL and apostrophes, interesting problem. 42082

2002-03-10 Thread Matt Schroebel
Read the manual about magic_quotes_gpc and addslashes() I prefer to add slashes myself, that way I can verify input lengths but it has the risk that I might miss a field. The trouble with magic_quotes_gpc is that if you have to re-display a variable you have to stripslashes() first. -

[PHP] scope issue?

2002-03-10 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I have the solution to my problem here but can't see why i need it? this snippet takes $AuthId from a form and but does not work (doesn't seem to pass it to the function) case edit: $tips-get_author($AuthId);

[PHP] which rights to set for dirs containing uploaded files?

2002-03-10 Thread Andy
Hi there, I am wondering which right I should set for a directory where users can upload pictures. What would be a secure way? Currenly I did set the rights to 777 which allows everything. This seams verry insecure to me. But otherwise php can't store the file. Thanx for any suggestion. Thanx

[PHP] setting up virtual hosts

2002-03-10 Thread Andy
Hi guys, I know this is not an apache group, but I am sure you guys did deal with the same problem as I do currently. So somebody might know it. I did set up 3 Virtual hosts in my httpd.conf with the same ip adress but a different name and dir. Serving 3 different applications. This works fine

Re: [PHP] Alphabet

2002-03-10 Thread Angel Fenoy
Robert V. Zwink wrote: What could be simpler than: $range = implode( , range('A', 'Z')); echo $range; result: A B C D . . . The most short expression I found: $r=join('',range(A,Z)); echo $r; result: ABCDEFGHIJKLMNOPQRSTUVWXYZ Am I missing something here? All this loop, chr()

[PHP] Re: gd-library ...

2002-03-10 Thread Andy
Hi Marcel, I did struggle with the same prop a while ago. It's quit easy. Get yourself php4.1.2 . This version has the gd library included. after installing uncomment the libgd module line in php.ini. Look out for the different versions. There might be one line for the old 1.8x library. save it

Re: [PHP] which rights to set for dirs containing uploaded files?

2002-03-10 Thread Matt Schroebel
- Original Message - From: Andy [EMAIL PROTECTED] Subject: [PHP] which rights to set for dirs containing uploaded files? I am wondering which right I should set for a directory where users can upload pictures. What would be a secure way? Currenly I did set the rights to 777 which

Re: [PHP] Netscape vs. IE/Mozilla

2002-03-10 Thread James Arthur
On Friday 08 Mar 2002 15:44, Vlad Kulchitski wrote: Hi guys, I know it's a wrong place to ask about this, but I am sure someone here faced the same problem. I am trying to get the site to look consistent in Netscape Navigator and it's giving me hard times. Yes, this is a bug in Netscape

[PHP] Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
I have a small picture and when I click on this image image opens resimgoster.asp with resimgoster.asp?res=main tumbled images picture.jpg and this asp code includes %@language=vbscript% %location=request.querystring(res) location=replace(location, , /) % body img src=%=location% /body this

Re: [PHP] Can Anyone translate my script to php?

2002-03-10 Thread Jason Wong
On Monday 11 March 2002 01:48, Ceyhun Güler wrote: I have a small picture and when I click on this image image opens resimgoster.asp with resimgoster.asp?res=main tumbled images picture.jpg and this asp code includes %@language=vbscript% %location=request.querystring(res)

Re: [PHP] PDFLib

2002-03-10 Thread Jason Wong
On Sunday 10 March 2002 16:29, Evan Nemerson wrote: From http://www.pdflib.com/pdflib/faq.html: This demo stamp appears when one of our binaries distributed by PDFlib GmbH is used. It can be disabled by purchasing a PDFlib license, and applying the delivered license key (serial) at runtime

[PHP] who can translate my ASP codes to PHP code? its very simple asp code...

2002-03-10 Thread Ceyhun Güler
I have a small picture and when I click on this image image opens resimgoster.asp with resimgoster.asp?res=main tumbled images picture.jpg and this asp code includes %@language=vbscript% %location=request.querystring(res) location=replace(location, , /) % body img src=%=location% /body this

[PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Michael Kimsal
Ceyhun GüLer wrote: I have a small picture and when I click on this image image opens resimgoster.asp with resimgoster.asp?res=main tumbled images picture.jpg and this asp code includes %@language=vbscript% %location=request.querystring(res) location=replace(location, , /) % body

[PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
Thanksss but my link will be resimgoster.php?res=main images picture.jpg right? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
Thankss Jason! I m downloading it Jason Wong [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... On Monday 11 March 2002 01:48, Ceyhun Güler wrote: I have a small picture and when I click on this image image opens resimgoster.asp with resimgoster.asp?res=main tumbled images

Re: [PHP] setting up virtual hosts

2002-03-10 Thread Chris Hewitt
Andy, Have you set up dns so that all three URLs translate to the same ip address? Just a thought. You could use tcpdump (assuming you are on unix) to check whether apache (port 80 or whatever) is being called and whether dns queries are answered with the right ip address. Regards Chris

[PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
http://www.akademihastanesi.com.tr/kocak/resimgoster.php look here I have tried to do it but notting happens? :( -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Lauri Vain
Hi Ceyhun http://www.akademihastanesi.com.tr/kocak/resimgoster.php look here I have tried to do it but notting happens? Open that page in your browser and 'View source'. You don't seem to have PHP enabled on your server. Yours, Lauri -- Tharapita Creations [dynamic web applications] [EMAIL

Re: [PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
hmmm I ll try it on my local host -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Can Anyone translate my script to php?

2002-03-10 Thread Ceyhun Güler
Thanks everyone! IT'S WORKING NOW :P -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] parse error? how can I print spesific message for all error mesage

2002-03-10 Thread Ceyhun Güler
Parse error: parse error in c:\inetpub\wwwroot\kocak\resimgoster.php on line 3 How can I print my own message like sorry not avaiable! for all error happening in my php file but I want to make it only for this file I don' t want to configure My IIS My script was which Michael Kimsal was

Re: [PHP] parse error? how can I print spesific message for all error mesage

2002-03-10 Thread hugh danaher
Your line 2 doesn't end with a semicolon and causes the parse error on the next line. I don't think you can suppress parse errors because your code isn't running yet. once your code is running you can append die() to any decision statement or you can append echo If (!isset($r)) die($r wasn't

[PHP] xslt encoding problem

2002-03-10 Thread Mike Eynon
Howdy all. I am trying to use the new XSLT translation stuff in 4.1.1 with Win2k and IIS running ISAPI. When I try to run even the simplest example, I get the following error: unknown encoding '' 62 I have tried specifying the encoding in both the XML and XSL files, and even tried both

[PHP] Testing mail functionality on a local network possible?

2002-03-10 Thread Andy
Hi there, I am wondering if it would be possible to send an e-mail inside my production environment without connecting to the internet. My application is running on OSX and I would like to send mail via php to the win2k machine. I was reading something about mailservers but did not really get if

RE: [PHP] Testing mail functionality on a local network possible?

2002-03-10 Thread Demitrious S. Kelly
If you are running a good mailserver (I use qmail + linux or freebsd) you can send mail internally without being connected to anything... generally address@localhost will send without a connection to the internet, or [EMAIL PROTECTED] if the mail server is configured to accept mail for

[PHP] SAPDB compile problem

2002-03-10 Thread Alex Black
hi all, Apologize if php-dev is inappropriate, but since this is a compile problem I thought it would be relevant. I have cc:d the sapdb-general list as they should be aware of these compile problems (and that is where I first asked for help). I would like to construct a guide for people using

[PHP] Reading lines from a CSV file

2002-03-10 Thread Don
Hi, I have a comma delimited text file composed of many rows of text. I've been looking at the PHP documentation for file system functions but cannot see a way to read a file row by row. Each row may be different byte length. How do I read only a row and have the file pointer at the start

Re: [PHP] Reading lines from a CSV file

2002-03-10 Thread Hank Marquardt
http://www.php.net/fgetcsv The manual is your friend:) If you like to do the work yourself, file() will suck the whole thing into an array with the elements being the lines of the file. On Sun, Mar 10, 2002 at 08:35:03PM -0500, Don wrote: Hi, I have a comma delimited text file composed of

Re: [PHP] Re: Checking to see what value error_reporting is set at?

2002-03-10 Thread David Robley
In article 01ba01c1c7ca$bd95b1f0$0501a8c0@zaireweb, [EMAIL PROTECTED] says... I ment, if you re-set it, as im setting it to error_reporting(E_ALL); depending on a value i get from a db query... -Eric - Original Message - From: David Robley [EMAIL PROTECTED] To: Sent:

[PHP] Apache Password Encryption (php)

2002-03-10 Thread Ellis M. Mendez-Hidaka
Greetings all, I was wondering if there's any way to encrypt passwords without having to recompile apache or PHP. Just a simple password to use instead of the xhtml input tag which does not encrypt the data. Thank you for your help. Ellis -- PHP General Mailing List (http://www.php.net/) To

[PHP] A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
Hi, I not a newie but I am not a pro at mysql either. I want to do a query by letter(a, b, c..ect.). Is there a simple way to do it. I am writing in PHP. So can someone please so me the how. | Chuck Payne | | Magi Design and Support | |

[PHP] Broadcasting

2002-03-10 Thread jtjohnston
Not really a php thing, more a loss of php :) ! My PHP-MySQL server has been stolen from my office (last night). Security has not been doing their job! I noticed in the logs once where people were trying to get in by FTP on occasion, or adding weird things to a url, when it was running just as

[PHP] Broadcasting

2002-03-10 Thread jtjohnston
Not really a php thing, more a loss of php :) ! My PHP-MySQL server has been stolen from my office (last night). Security has not been doing their job! I noticed in the logs once where people were trying to get in by FTP on occasion, or adding weird things to a url, when it was running just as

[PHP] Broadcasting

2002-03-10 Thread jtjohnston
Not really a php thing, more a loss of php :) ! My PHP-MySQL server has been stolen from my office (last night). Security has not been doing their job! I noticed in the logs once where people were trying to get in by FTP on occasion, or adding weird things to a url, when it was running just as

php-general Digest 11 Mar 2002 02:59:42 -0000 Issue 1219

2002-03-10 Thread php-general-digest-help
php-general Digest 11 Mar 2002 02:59:42 - Issue 1219 Topics (messages 87903 through 87945): newbie: the superglobal $_SESSION 87903 by: bob 87909 by: Matt Schroebel PHP/Apache/Windows question 87904 by: George E. Papadakis Re: CSS Group 87905 by: Shu Chow

[PHP] Variables within a string

2002-03-10 Thread webapprentice
Hello, When I try to do this: $foo = Entry for for $HTTP_POST_VARS[\name\]; I receive this error: Parse error: parse error, expecting `T_STRING' or `T_VARIABLE' or `T_NUM_STRING' on line X Why does it do this, and how do I get around this, besides assigning the value of $HTTP_POST_VARS[\name\]

RE: [PHP] Variables within a string

2002-03-10 Thread Chris Cocuzzo
I would imagine the problem has something to do with those escaped quote marks, but in any case, you could probably get around it by doing this: $foo = Entry for . $HTTP_POST_VARS[name]; some correct me if I'm wrong -chris -Original Message- From: webapprentice [mailto:[EMAIL

[PHP] Re: A stupid question...

2002-03-10 Thread Cary
At 08:24 PM 3/10/02, Chuck \PUP\ Payne wrote: Hi, I not a newie but I am not a pro at mysql either. I want to do a query by letter(a, b, c..ect.). Is there a simple way to do it. I am writing in PHP. So can someone please so me the how. I'm not totally sure what your looking for. If you could

Re: [PHP] Re: A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
I want to sort my a letter in a set colomn. Let say I want to sort the colomn last_name http://www.myserver.com/mysort.php?Letter=A Like to create a link like A then sort only the last name ore what ever I want to sort by that letter. I hope that's helps. I can order by, but I can't so a sort

Re: [PHP] Re: A stupid question...

2002-03-10 Thread Chuck \PUP\ Payne
I want to sort by a letter in a colomn. Let say I want to sort the colomn last_name. I can do order by but I can do just the A's. http://www.myserver.com/mysort.php?Letter=A Like to create a link on a web A then sort only the last name are A. I hope that's helps. I can order by, but I can't

[PHP] [PHP-DB] Mssql trusted connections ?

2002-03-10 Thread Kearns, Terry
How does one use trusted connections with mssql_connect() ? Also, the manual says something about an interfaces file. Where do I find this? Where is this interfaces file documented? [TK] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Variables within a string

2002-03-10 Thread Jason Wong
On Monday 11 March 2002 11:10, Chris Cocuzzo wrote: I would imagine the problem has something to do with those escaped quote marks, but in any case, you could probably get around it by doing this: $foo = Entry for . $HTTP_POST_VARS[name]; some correct me if I'm wrong Or simply: $foo =

[PHP] PHP based search engine

2002-03-10 Thread Tim Thorburn
Hi, Does anyone know of a PHP based search engine for a website? I was using Fluid Dynamics on my site - as I've got some sections of the site in a MySQL database, and some sections are just static pages. However, it seems to get stuck in a loop while trying to index portions of my database

Re: [PHP] Re: A stupid question...

2002-03-10 Thread michael kimsal
Chuck Pup Payne wrote: I want to sort by a letter in a colomn. Let say I want to sort the colomn last_name. I can do order by but I can do just the A's. http://www.myserver.com/mysort.php?Letter=A Like to create a link on a web A then sort only the last name are A. I hope that's

[PHP] get data from query before while loop

2002-03-10 Thread Jason Dulberg
I have a mysql query that I need to echo a variable from once before I go into the while loop which would list the entire contents of the array. The field shown once will not be displayed in the while looped contents. So theoretically, something like this: $result = mysql_query(SELECT h.title,

Re: [PHP] PHP based search engine

2002-03-10 Thread Underbrush
I don't see why not, but you have to write the search engine. i.e. create a form, take user input, search your database, search your static files, and return some formatted output with links to the content. It's a project. Someone else might be able to point you to some pre-written code. I

[PHP] SOAP

2002-03-10 Thread Kearns, Terry
Who has had a crack at using SOAP with PHP (both client and server)? What have you learned that you would recommend to someone just starting out with soap? I've noticed that there are a few options on the horizon, I'm busy checking out the scripts written by Manuel Lemos. For all those who

Re: [PHP] newbie: the superglobal $_SESSION

2002-03-10 Thread bob
it works. ?php session_start(); if (!isset($_SESSION['count'])) { $_SESSION['count'] = 1; } else { $_SESSION['count']++; } echo $count; ? but the first time,i also get the warning(Warning: Undefined variable: count in C:\WebShare\wwwroot\netk\5\test.php on line 9 ).then ,it outputs

RE: [PHP] Re: A stupid question...

2002-03-10 Thread Demitrious S. Kelly
You haven't given anyone any specifics... nor a link to a phps, so I cannot be any more specific with my advice You could probably get away with looking through each of the elements in the array and using something like if ( substr($element, 0, 1) == $letter ( {

Re: [PHP] Broadcasting

2002-03-10 Thread Frank
I noticed in the logs once where people were trying to get in by FTP on occasion, or adding weird things to a url, when it was running just as an IP. ...like e.g. Code Red or Nimda do. My question is: does my Apache server broadcast itself or its IP for when script kiddies come check out my

[PHP] Re: CSS Group

2002-03-10 Thread Gary
Jtjohnston wrote: Can anyone recommend a good CSS news group? http://two.pairlist.net/mailman/listinfo/css-discuss Very hard core CSS List HTH Gary -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] NEW template class!!

2002-03-10 Thread ayu
KONNICHIWA, everyone. I wrote a new template class for rapid web development. Please, give me any feedback. thanks. Hiroshi Ayukawa -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New template class

2002-03-10 Thread ayu
KONNICHIWA, everyone. I wrote a new template class for rapid web development. Please, give me any feedback. thanks. Hiroshi Ayukawa -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Broadcasting

2002-03-10 Thread Samuel Ottenhoff
This is sort of a weird question as it seemingly involves both physical theft and virtual theft. But here goes: 1) How do script kiddies find you? If you have a public IP address, and you are not protected behind a firewall, you will be probed by scripts. How do they find you? By port

RE: [PHP] Error Handler Problem

2002-03-10 Thread S.Murali Krishna
I think I can get something from you.. Here just in short I want to Capture Error of the following, just tell me what I have to do for that. PHP: Fatal Error: Undefined function 'some_non_exi_func()' Thanks for your reply. On Sat, 9 Mar 2002, Dan Vande More wrote: I'm not

Re: [PHP] New template class

2002-03-10 Thread ayu
Sorry, I forgot the URL ;) http://hoover.ktplan.ne.jp/kaihatsu/php_en/index.php?type=top -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New template class

2002-03-10 Thread ayu
Konnichiwa, everyone. I wrote a new template class to separate HTML views from PHP scripts. Give me some feedback, please. http://hoover.ktplan.ne.jp/kaihatsu/php_en/index.php?type=top -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP based search engine

2002-03-10 Thread Samuel Ottenhoff
Check out phpdig: http://phpdig.toiletoine.net/ My guess is that one of these packages on the web can serve as a foundation for you... You might just need to build a custom layer on top of it. Check out the site freshmeat.net. It tracks software packages and new updates and is quite focused on

[PHP] New template class

2002-03-10 Thread ayu
Konnichiwa, everyone. I wrote a new template class to separate HTML views from PHP scripts. Give me some feedback, please. http://hoover.ktplan.ne.jp/kaihatsu/php_en/index.php?type=top -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] New template class

2002-03-10 Thread ayu
Konnichiwa, everyone. I wrote a new template class to separate HTML views from PHP scripts. Give me some feedback, please. http://hoover.ktplan.ne.jp/kaihatsu/php_en/index.php?type=top -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] SOAP

2002-03-10 Thread Andrey Hristov
Hi I've tried the SOAPx4 by Dietriech. Looks good ('m not very profocent in SOAP). Firstly I tried to use XMLRPC for my stuff but found the UsefulInc implementation by Edd Dumbill is so slow - For array with 100 elements I 've to wait 4 seconds to transfer for the server to the

[PHP] attachment through mail

2002-03-10 Thread Swati Patil
i m using php4.1.1 in the mail function, i want to provide the facility to the end user to attach his/her word document. how can i do this? swati. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] connection speed?

2002-03-10 Thread Kunal Jhunjhunwala
Hey, How can I detect the users connection speed? I dont want to ask them.. :) Regards, Kunal Jhunjhunwala Minds think with ideas, not information. No amount of data, bandwidth, or processing power can substitute for inspired thought. - Clifford Stoll -- PHP General Mailing List

[PHP] expose_php

2002-03-10 Thread Erwien Samantha Y
Anyone can explain the fuction oh expose_php , in php.ini . Whatever i set ON or OFF. There are any security issue about expose_php ? -- -== HonesT Is The BesT PoLicY ==- - -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: [PHP-DEV] PHP 4.1.2 for windows

2002-03-10 Thread Andrey Hristov
AFAIK the problem is not afecting windows users. Because of that there is no windows binary. Best regards, Andrey Hristov - Original Message - From: Gabor Hojtsy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 11, 2002 9:42 AM Subject: [PHP-DEV] PHP 4.1.2 for windows

Re: [PHP] expose_php

2002-03-10 Thread Zeev Suraski
expose_php tells PHP whether it's allowed to expose the fact that it's installed on the server, or not. If it's on, it'll be possible and easy to determine that PHP is installed on the server. Whether or not this poses a security risk is a matter of opinion. Zeev On Mon, 11 Mar 2002, Erwien