Re: [PHP-WIN] Session Variables With Spaces

2001-04-12 Thread Eric Pankoke
My mistake. I should have looked into this a little bit more before I posted a message about it. It turns out that my HTML was the problem, not the PHP session variables. When I was writing out the text controls I was writing the tag as value=variable instead of value="variable", which was

[PHP-WIN] A sendmail for local testing?

2001-04-12 Thread Plutarck
I have PHP (as CGI) setup with Apache on my Windows 98 system to test out my applications locally, and I would like to be able to test out my uses of the mail functions too. Could someone please point me in the direction of what software I have to get/use/enable to use sendmail locally? I know ab

[PHP-WIN] Session Variables With Spaces

2001-04-12 Thread Eric Pankoke
I have two php pages using session variables. One redirects to itself after refreshing the variables, and the other redirects to a second php page, retrieves some values into the session variables, and then returns to the first page. The one that redirects to itself works fine. The one that

Re: [PHP-WIN] pb with register_globals

2001-04-12 Thread Plutarck
Not dirrectly related to sessions, but you might enjoy the following piece of code: $f = 'HTTP_' . $HTTP_SERVER_VARS["REQUEST_METHOD"] . '_VARS'; Then if someone submits the field "username" you can refer to it as ${$f}["username"], and it will work if they used POST or GET. -- Plutarck Shoul

Re: [PHP-WIN] headers

2001-04-12 Thread Plutarck
I'd really like a list of headers for mail :) But at least I found this: http://www.shopthenet.net/publiclibrary/CIE/RFC/index.htm It's a list of RFCs. The one of interest to your query, that I know of at the moment: http://www.shopthenet.net/publiclibrary/CIE/RFC/2068/155.htm -- Plutarck Sh

[PHP-WIN] headers

2001-04-12 Thread lars Eirik Rønning
I was wondering if anyone knows about any good links to both email headers as well as document headers to be used with a php script. Mime types would also be appreciated Thanks Lars E

[PHP-WIN] MSSQL + IIS

2001-04-12 Thread < André M.S.
How can i use MSSQL + IIS? i´m having some problems... tks -- 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]

Re: [PHP-WIN] Funny errors with IF

2001-04-12 Thread Olivier Hubert
Hi, >if ($submit) { > // here if no ID then adding else we're editing > if ($id) {... > >where id is the first field of mydb. Using other pages I can see that the >id is there in the mydb file. I also get the same error for "if ($submit..." Ok, I may be wrong here as I'm no PHP expert

Re: [PHP-WIN] php 4 crashes apache for windows

2001-04-12 Thread Yasuo Ohgaki
How about re-install them? PHP4.0.5RC(SAPI)/Apahce1.3.19/W2K works fine for me. I guess you skipped some step during installation. Regards, -- Yasuo Ohgaki ""Darren"" <[EMAIL PROTECTED]> wrote in message 9b2447$406$[EMAIL PROTECTED]">news:9b2447$406$[EMAIL PROTECTED]... > Hi all. I have a probl

[PHP-WIN] Funny errors with IF

2001-04-12 Thread Howard Picken
Just starting to learn PHP/MySQL and having problems with "undefined variable" errors. All the pages I've created from tutorials give me errors on "some" of the if statements. Example 1 etc I get errors on if (!$sep... etc and on if (!$send... etc Running Win98SE, Apache 1.3.x, MySQL 3

php-windows Digest 12 Apr 2001 23:47:44 -0000 Issue 541

2001-04-12 Thread php-windows-digest-help
php-windows Digest 12 Apr 2001 23:47:44 - Issue 541 Topics (messages 6667 through 6687): Regarding TTf support for php_gd.dll 6667 by: Pratap Ladhani Re: cgi error 6668 by: Rehuel Lobato Re: PHP Editor 6669 by: Rehuel Lobato 6670 by: Ovidiu EFTIMIE

Re: [PHP-WIN] pb with register_globals

2001-04-12 Thread Yasuo Ohgaki
If you disable register_globals, use $HTTP_SESSION_VARS as normal variable. For example, $HTTP_SESSION_VARS['counter'] = 0; unset($HTTP_SESSION_VARS['counter']; isset($HTTP_SESSION_VARS['counter']; No register()/unregister()/is_registered, is required. Regards, -- Yasuo Ohgaki ""Barraud, Stép

[PHP-WIN] hidden fields & form enctype="multipart/form-data"

2001-04-12 Thread Mike Flynn
Hey all, I'm having a weird problem. I'm readying a page to eventually allow file submission, but for now I've just added the enctype="multipart/form-data" to the form declaration -- no file input field yet. The strange thing, is that on a small test page, hitting the submit button works ok

Re: [PHP-WIN] php 4 crashes apache for windows

2001-04-12 Thread Ermanno Iannacci
PHP ISAPI doesn't work. It has been working until 4.0.2. When I change to 4.0.3 everything crashed. So I moved to CGI mode. Also permanent connections don't work, at least the ones with MSSQL 7. I'm running an intranet with about 150 hosts. The most of this mailing list won't agree, but NT4 + IIS

[PHP-WIN] mcrypt library

2001-04-12 Thread Pedro Lira
Does any one have the file libmcrypt.lib, so I can compile the php_mcrypt module ? Unfortunately this file is not included with de win32 distribution of mcrypt. Thanks in advance for your help. Pedro Lira -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTEC

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread Eduardo Silva
MY friend I work with EditPlus which recogned all syntax from php and others languages. Site: www.editplus.com Abs. Edu. --- FX Liagre <[EMAIL PROTECTED]> escreveu: > What about debugging capabilities with PHP Coder ? > I've try to use it, but > quite everything is still grayed in the RUN(debu

Re: [PHP-WIN] Exec()

2001-04-12 Thread Guido E. Smit
I have the same problem, running W2K and IIS5: print "\n"; exec('LUII.exe rpc3.ingrammicro.com 058DY12 1', $returnstring, $returnvar); print "Return var: ".$returnvar."\n"; print "Printing output ".count($returnstring)." lines:\n"; print "\n"; while (list($line, $text) = each($returnstring))

[PHP-WIN] pb with register_globals

2001-04-12 Thread "Barraud, Stéphane"
Hi all, I'm using PHP 4.0.4pl1 on windows as CGI. I try to avoid to use register_globals = On. In my script I use only $HTTP_*_VARS variables to access forms fields. The problem is when I set register_globals = Off in php.ini, the session is not working any more, loosing session variables cont

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread FX Liagre
What about debugging capabilities with PHP Coder ? I've try to use it, but quite everything is still grayed in the RUN(debug) menun, despite the fact that I've configured php to use php dbg, and run the dbg listener... "Piotr Pluciennik" <[EMAIL PROTECTED]> a écrit dans le message news: [EMAIL PR

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Bradley Miller
At 08:38 AM 4/12/01 -0500, you wrote: >Don't even bother with Homesite. There aren't enough >expletives (plus, this is a family list :p) to adequetly describe >how bad this software is. And don't take my word for it. Ok -- I'll pipe in here that I've been using Homesite since version 1.0 and I

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Jude Sanglitan
I am using PHPEd, is it good? Well for me it is good. But still I need your advice too!. -Original Message- From: Plutarck [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 10:18 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] PHP Editor I use EditPlus and am really really h

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread Plutarck
I use EditPlus and am really really happy with it. It is only a text based editor, but it has full syntax highlighting (I even created a full function list for it's syntax file), Project Management, spell checkers, it supports regex in it's search features...I just really really like it :) www.ed

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread Massimo Foti
I am using HomeSite since version 2.5 in 1997 and never had similar problems, but I run NT in the past and now win2000. Massimo ""Boget, Chris"" <[EMAIL PROTECTED]> wrote in message > I'm using Win98. > The main problems I'm experiencing is with memory. There is a > memory leak in this thing a

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Boget, Chris
> I use UltraEdit 8 for editing PHP and Perl. I checked out UltraEdit. It does seem pretty cool. It just doesn't have the features I need. :/ Chris

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Boget, Chris
> RE: [PHP-WIN] PHP EditorI'm using Homesite + the Php > extensions for about a year now I'm using the same, but have been for the past 3 years. Every day, I keep hoping and praying that I can find an editor that has the features I need so I can delete this software with impunity. > and,I had

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread Carlton Foster
I use UltraEdit 8 for editing PHP and Perl. - Original Message - From: "Ovidiu EFTIMIE" <[EMAIL PROTECTED]> To: "Boget, Chris" <[EMAIL PROTECTED]>; "Rehuel Lobato" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursday, April 12, 2001 9:51 AM Subject: RE: [PHP-WIN] PHP Editor > RE: [PHP

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Ovidiu EFTIMIE
RE: [PHP-WIN] PHP EditorI'm using Homesite + the Php extensions for about a year now and,I had some problems but nothing I couldn't work out . I'm developing on windows for linux, and I had some problems when I was working directly on the linux because sometimes Homesite froze (due to network cong

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Boget, Chris
> You should try Homesite 4.5 or Ultradev 4.0 with the PHP > extension PHAkt > (http://www.interakt.ro/phakt/) Don't even bother with Homesite. There aren't enough expletives (plus, this is a family list :p) to adequetly describe how bad this software is. And don't take my word for it. Go to A

RE: [PHP-WIN] PHP Editor

2001-04-12 Thread Ovidiu EFTIMIE
No. You should try Homesite 4.5 or Ultradev 4.0 with the PHP extension PHAkt (http://www.interakt.ro/phakt/) Ovidiu > -Original Message- > From: Rehuel Lobato [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 12, 2001 3:02 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP-WIN] PHP Editor >

Re: [PHP-WIN] PHP Editor

2001-04-12 Thread Rehuel Lobato
Is Macromedia Dreamweaver a good PHP editor? What's the difference between this and other editors?? Rehuel -- 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

Re: [PHP-WIN] cgi error

2001-04-12 Thread Rehuel Lobato
Hey Ivan, I had the same problem less then 24 hours ago! first, I think you need my submission of yesterday (5 messages down) look at the replies. Make sure the properties of the folder you change to are changed too. 1. The url needs to be correct 2. Make sure the path is correctly changed to t

[PHP-WIN] Regarding TTf support for php_gd.dll

2001-04-12 Thread Pratap Ladhani
I am working on a NT Workstation.. (PWS) When trying to use the function ImageTTFBBox() or ImageTTFText() I get the following error: Warning: Could not find/open font in so and so page and so and so line... I think I have not configured my php to enable true type fonts !! But my phpinfo() say

php-windows Digest 12 Apr 2001 10:29:23 -0000 Issue 540

2001-04-12 Thread php-windows-digest-help
php-windows Digest 12 Apr 2001 10:29:23 - Issue 540 Topics (messages 6651 through ): GD library for win32 6651 by: Piotr Pluciennik Re: php 4 crashes apache for windows 6652 by: Ermanno Iannacci Re: PHP Editor 6653 by: Josh Seward 6654 by: Josh Seward

[PHP-WIN] cgi error

2001-04-12 Thread Ivan Pavlovic
The specified CGI application misbehaved by not returning a complete set of HTTP headers. The headers it did return are: This message is starting to show when I change the name of home directory. I change the local path in IIS but nothing. When I return the name everything is ok. I created ne

Re: [PHP-WIN] Exec()

2001-04-12 Thread Patrick
""Helmut Himmelstoss"" <[EMAIL PROTECTED]> wrote in message 9b21na$iu7$[EMAIL PROTECTED]">news:9b21na$iu7$[EMAIL PROTECTED]... > I copied the Program Ping.exe to the same directory as my script and the > User the IUSR_[Machine name] hast the permissions. > > echo""; > $dd=system("ping p

[PHP-WIN] PHP and XML

2001-04-12 Thread Byrne, Gerald [euler:eti-lon]
Hello everybody. I'm new to PHP but I like what I see. Can anybody advise me about the best way for using XML in my PHP pages. Locally I'm using PHP4 with Xitami on NT 4. I'd also like to be able to use XML with my free host (www.freeola.com). Is there a set of light weight PHP classes for us

Re: [PHP-WIN] dynamic buttons

2001-04-12 Thread NarN
Tnx I found it a few hours after my post. It's a big manual! "Piotr Pluciennik" <[EMAIL PROTECTED]> schreef in bericht [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > you should use some of the PHP image functions. It let you do dynamic > buttons. An example you've got in PHP online ma