Re: [PHP-WIN] I really don't understand this?

2003-04-01 Thread ODCS
Been down that road. I've used unset($duplicate), $duplicate="" - so I don't know. I have been going around in circles since 5 this afternoon EST with this - no matter what I do I get the same results. I'm just at a complete loss. I've even tried setting it to a letter $duplicate="T", but get the s

RE: [PHP-WIN] I really don't understand this?

2003-04-01 Thread Jill . Ramonsky
I _THINK_ this is to do with scope. If you say elseif ($duplicate = ...) { } and this is the first use of the variable $dublicate, then $duplicate goes out of scope at the end of the right brace. I could be wrong about that, but it's worth a try. See what happens if you

RE: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread Uttam
* just skip the action attribute in tag. * mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 22:44 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] Simple Answer, but I can't see it This is the some of the code that is contained within the PHP page... more HTML & PHP etc... ?> Mor

php-windows Digest 2 Apr 2003 05:26:24 -0000 Issue 1664

2003-04-01 Thread php-windows-digest-help
php-windows Digest 2 Apr 2003 05:26:24 - Issue 1664 Topics (messages 19229 through 19241): Re: Simple Answer, but I can't see it 19229 by: skate 19230 by: skate Subject: + character in a command line argument 19231 by: Max Graham 19232 by: mmy 192

[PHP-WIN] I really don't understand this?

2003-04-01 Thread ODCS
I have spent the last 8 hours (seriously) trying to figure out this stupid piece of code, and it's just beyond me why it doesn't work. I hope someone here can help, or even follow the code. I have a form where the user inputs information - the code below is the error checking for one of the fields

Re: [PHP-WIN] what win32 SMTP are you using with php?

2003-04-01 Thread Scott Carr
Try http://www.xmailserver.org It has several setup programs for it. Very small footprint. (around ~900kb zip.) Pretty cool. -- Scott Carr Documentation Maintainer http://documentation.openoffice.org OpenOffice.org Quoting "Leo G. Divingracia III" <[EMAIL PROTECTED]>: > so far, i tried 2: p

[PHP-WIN] what win32 SMTP are you using with php?

2003-04-01 Thread Leo G. Divingracia III
so far, i tried 2: pegasus mail and mail enable. both are free. all i need are basic send out from LOCALHOST, but i cant seem to configure them correctly. can anyone help me out? what open source or free SMTP server are you using? can i see the config/setup files? again, all i need is to h

[PHP-WIN] Re: Sending Mail with PHP

2003-04-01 Thread Manuel Lemos
Hello, On 03/31/2003 03:16 PM, Listuser wrote: My ISP requires email authentication when sending emails, is the a way to set this up in PHP. The mail function does not support authentication. You may want to try this class for composing and sending messages that comes with a sub-class for sendin

AW: [PHP-WIN] Re: Subject: + character in a command line argument

2003-04-01 Thread Sven Schnitzke
Hi, > mmy [SMTP:[EMAIL PROTECTED] wrote on tuesday, april 1, 2003 21:45 > > ..., but never > the basic syntax! > This is M$ of its earliest days, there is no such thing like a "basic syntax". "+" is special to DOS at least with the copy command in that "copy a+b.txt" means: take file "a" and

Re: [PHP-WIN] Output to Excel File

2003-04-01 Thread skate
if your running it on a windows box with excel installed, then you can use a COM object and export directly to an Excel (.xls) file. i've done this, and can supply some cool codes if needed. this stuff is pretty simple, and very cool when you get it working. another alternative is to export in co

Re: [PHP-WIN] Output to Excel File

2003-04-01 Thread Isetro Savi
There is not an easy way that I know of, however, you do have some alternatives. I believe outputting data in html tables and setting the content-type and name properly will work. This is somewhat messy and doesn't allow you to do much with the data, however. Another method I have used and the be

[PHP-WIN] Subject: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread Neil Smith
Very simple answer : basic HTML suggests that you don't close your form tags before the input tags. Remove the close form tag you have added immediately after the open form tag and you will see what I mean. You use dreamweaver, don't you ? Another pair of eyes is a wonderful thing ;-) Cheers,

[PHP-WIN] Output to Excel File

2003-04-01 Thread Chris and Trish Kaelin
At my job, we are using ColdFusion with an Oracle database, and one the things we do is output data in a HTML table using contentType = "application/msexcel", which creates a MS Excel spreadsheet. The two web sites I am running from home are PHP with an mySQL database. Is there a similar metho

[PHP-WIN] Re: Subject: + character in a command line argument

2003-04-01 Thread mmy
Thanks for the try! No, I did not up to now. Unfortunately, the result of the test is that this is taken as face value (the 3 characters). However, % has indeed some syntactic use: it is an escape for the double quote (%" yields a double quote, and no split), and for itslef (%% yields %), but not

[PHP-WIN] Subject: + character in a command line argument

2003-04-01 Thread Max Graham
Have you tried replacing the + with %2B? Having never tried this before myself, this is sort of a shot in the dark ... but I figured it might give you an idea as to where to go from > Message-ID: <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > From: "mmy" <[EMAIL PROTECTED]> > Date: Sun, 30 Mar 20

Re: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread skate
if you simply hit return, it "should" submit the first form in IE, so you may well have been doing this, but pressing submit other times... it's one of those annoying little things that you kick yourself for not noticing :) - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTEC

Re: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread skate
okay, after your kill the that's the bit that'll be breaking it... - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 01, 2003 6:13 PM Subject: Re: [PHP-WIN] Simple Answer, but I can't see it > This is the some of the code that is conta

php-windows Digest 1 Apr 2003 17:13:44 -0000 Issue 1663

2003-04-01 Thread php-windows-digest-help
php-windows Digest 1 Apr 2003 17:13:44 - Issue 1663 Topics (messages 19218 through 19228): Re: PHP as CSS Stylesheet - broken in IE6/PHP 4.3.x 19218 by: Per Lundberg . 19219 by: chris.avontuur.philips.com COM and reference or smart pointers 19220 by: Ruben Goet

Re: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread Trystano
This is the some of the code that is contained within the PHP page... more HTML & PHP etc... ?> More HTML etc... When the submit button is pressed the nothing happens. Tryst -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread skate
i'm guessing (hoping) that you have an actual form inside those form tags? what's the rest of the code look like, and what does it actually do? - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 01, 2003 5:48 PM Subject: [PHP-WIN] Simple Answer, bu

[PHP-WIN] Simple Answer, but I can't see it....

2003-04-01 Thread Trystano
Hi, I have a login HTML form within a PHP page that I want to call itself when submitted. But when I press the submit button within the form, the form doesn't load itself for some reason. I have tried two ways of solving this but can't get it to work. It would be great if someone could identify

Re: [PHP-WIN] Extension doesn't work in IIS

2003-04-01 Thread Luis Ferro
I would think that is a permission problem. When you execute from the command line, you are executing with your user name and permissions. When you execute from within IIS, you are either executing it from IUSR_servername or IWAN_servername users... Which can or can't have rights to the dlls in

[PHP-WIN] Andrew's Image Problem

2003-04-01 Thread Andrew von Hoesslin
Anybody have a clue why this does not work??!!! I am using php430 imagecopy ("images/card/finaltemp/maincard.jpg","images/sponsor/pics/top/G3top.jpg",15,15,15,15,15,15); this works so i dont know what the problem is??? $size = getimagesize ("images/card/finaltemp/maincard.jpg"); echo ""; $s

[PHP-WIN] Extension doesn't work in IIS

2003-04-01 Thread Benjamin Walling
I set up the mssql extension. I process a page from the command line (php d:\websites\istatus\DispatchNav.php) and it reads from the SQL Server and processes normally. If I try the page from a browser, I get 'call to undefined function: mssql_connect()'. I have restarted IIS, and that did not he

[PHP-WIN] Re: [newbie] SSL on Win98

2003-04-01 Thread speedfreak
Bobby Rahman wrote: > Hiya > > Can anyone point me in the direction of a dummies guide (idiot proof..) > to installing and configuring SSL for PHP4/Apache2.4.03/Win98. Had a little > look around on a few php websites but as usual im finding the windows stuff > a little lacking for me. > > Thanks >

[PHP-WIN] COM and reference or smart pointers ....

2003-04-01 Thread Ruben Goethals
Hi, I am writing a php application to use a com object that is defined in my OS, but I have difficulties getting a (smart)pointer from another com-object. Here is the code (untill the error): ** $ConnectionObj = new COM("Falcon.Connec

[PHP-WIN] COM and reference or smart pointers to com interface

2003-04-01 Thread Ruben Goethals
Hi, I am writing a php application to use a com object that is defined in my OS, but I have difficulties getting a (smart)pointer from another com-object. Here is the code (untill the error): ** $ConnectionObj = new COM("Falcon.Connec