[PHP-WIN] Re: problem with mail - again

2002-05-23 Thread Manuel Lemos
Hello, On 05/23/2002 07:41 PM, Afan Pasalic wrote: > Hi people, > I started with sending a newsletter using this code and it works fine. > > $headers .= "From: Name - newsletter <[EMAIL PROTECTED]>\n"; > $headers .= "X-Sender: <[EMAIL PROTECTED]>\n"; > $headers .= "X-Mailer: PHP\n"; //mailer >

[PHP-WIN] problem with mail - again

2002-05-23 Thread Afan Pasalic
Hi people, I started with sending a newsletter using this code and it works fine. $headers .= "From: Name - newsletter <[EMAIL PROTECTED]>\n"; $headers .= "X-Sender: <[EMAIL PROTECTED]>\n"; $headers .= "X-Mailer: PHP\n"; //mailer $headers .= "X-Priority: 3\n"; //1 UrgentMessage, 3 Normal $heade

[PHP-WIN] Re: Varying Results Creating Table

2002-05-23 Thread Tim Greenleaf
Nicole, I have included the actual source and a link to the page so you can see the actual problem I am talking about. The errors appear to be the result of strings not terminating properly from the PHP output. Then partial HTML code is inserted in cells or at the top of the table. I have stri

RE: [PHP-WIN] basic form processing

2002-05-23 Thread Dash McElroy
No probs. Quick reminder: If you see the variables in the URL, it's GET. If you don't, it's POST. -Dash -Original Message- From: Nicole Amashta [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 2:59 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] basic form processing Sorry for

Re: [PHP-WIN] basic form processing

2002-05-23 Thread Nicole Amashta
Sorry for the double reply ! I didn't see this ... ;) Dash McElroy wrote: > Change this line: > > > > to: > > > > -Dash > > -Original Message- > From: Bill Hudspeth [mailto:[EMAIL PROTECTED]] > Sent: Thursday, May 23, 2002 8:58 AM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] basi

Re: [PHP-WIN] IIS COM problem

2002-05-23 Thread Alan Brown
Guessing I would suggest that you examine the permissions on the file referenced by $DocumentPath and see if IUSR_ has read permssion. If not, either run the site as a user with permission or grant the IUSR read permission on the document. Alan. - Original Message - From: "RS Herhuth" <[E

[PHP-WIN] Re: basic form processing

2002-05-23 Thread Nicole Amashta
Hello, YOu need to specify in yor form tag the post as the method >> By default, I think it uses GET as the submit method if you don't specify it in the form tag. Nicole Amashta www.aeontrek.com Bill Hudspeth wrote: > I am new to PHP and have been trying without success to proc

[PHP-WIN] Re: Passing Variables

2002-05-23 Thread Nicole Amashta
What error do you get? James Opere wrote: > Hi All, > I'm trying to pass variables from one form to the other.I have a problem > when i want to do the the following: > 1.COUNT($variable) > 2.DISTINCT($variable) > . > I realise i can not use the brackets in my query and the variable b

[PHP-WIN] Re: Passing Variables

2002-05-23 Thread Nicole Amashta
Why do you need the group by clause? Do one or the other, not both. either do a select count(id) from table or select field, count(id) from table group by field Check your query, Nicole Amashta www.aeontrek.com James Opere wrote: > Hi All, > I'm trying to pass variables from one form to the

[PHP-WIN] Re: Varying Results Creating Table

2002-05-23 Thread Nicole Amashta
Hello, Perhaps post the code that generates the dynamic table. Maybe your tags are not properly embedded and balanced. That could cause an issue if you had data outside of the and or tags inside the tags. Nicole Amashta www.aeontrek.com Tim Greenleaf wrote: > I have a search page that crea

[PHP-WIN] IIS COM problem

2002-05-23 Thread RS Herhuth
I just switched over from Apache to IIS and followed the installation and configuration instructions to the letter. My php test pages work fine and everything seems to be in order except that my pages that use COM functionality now generate the error below. CODE --- Documents->Open($D

[PHP-WIN] CGI-Trouble with Win2000

2002-05-23 Thread Jan Schmitz
Hi, we've a lot of trouble using PHP on IIS5/Win2000sp2-Server. The machine is a 2xPIII(1,3Ghz), 1280MB RAM, really fast. The problem is that sometimes the IIS doesn't execute the php.exe, instead it shows a "CGI Application error - wrong or incomplete header data" This problem only occurs on

RE: [PHP-WIN] basic form processing

2002-05-23 Thread Dash McElroy
Change this line: to: -Dash -Original Message- From: Bill Hudspeth [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 23, 2002 8:58 AM To: [EMAIL PROTECTED] Subject: [PHP-WIN] basic form processing I am new to PHP and have been trying without success to process a very simple form. My

Re: [PHP-WIN] basic form processing

2002-05-23 Thread Scott Carr
Try: echo "Thanks " . $_POST['FirstName'] . " " . $_POST['LastName']"; -- Scott Carr OpenOffice.org Whiteboard-Doc Maintainer http://whiteboard.openoffice.org/doc/ Quoting Bill Hudspeth <[EMAIL PROTECTED]>: > I am new to PHP and have been trying without success to process a very > simple for

[PHP-WIN] basic form processing

2002-05-23 Thread Bill Hudspeth
I am new to PHP and have been trying without success to process a very simple form. My basic problem is trying to pass variables from a form to another page, and to echo them in a results page. I understand that the most recent versions of PHP allow you to pass user-entered form variables in th

Re: [PHP-WIN] Cannot load ISAPI Filter DLL

2002-05-23 Thread Rich Gray
Sorted... I did put the php4isapi.dll in system32 and it successfully loaded after I also dropped the php4ts.dll into the same folder... Thanks for your reply anyway Cheers Rich - Original Message - From: "Brian McGarvie" <[EMAIL PROTECTED]> To: "Rich Gray" <[EMAIL PROTECTED]> Sent: Thu

[PHP-WIN] RE: [PHP] Passing Variables

2002-05-23 Thread Jay Blanchard
[snip] me.php [/snip] Note the concatenation operators, HTH! Jay -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Passing Variables

2002-05-23 Thread Michael Virnstein
$this usually is a self-reference inside a class. Use it with care! try to "echo $sql;", perhaps this tells you more. Regards Michael "James Opere" <[EMAIL PROTECTED]> schrieb im Newsbeitrag FC788AB9771FD6118E6F0002A5AD7B8F7268AB@ICRAFNTTRAIN">news:FC788AB9771FD6118E6F0002A5AD7B8F7268AB@ICRAFNTT

[PHP-WIN] Passing Variables

2002-05-23 Thread Opere, James
Hi All, I'm trying to pass variables from one form to the other.I have a problem when i want to do the the following: 1.COUNT($variable) 2.DISTINCT($variable) . I realise i can not use the brackets in my query and the variable be recognised.When i add COUNT without the brackets i stil

RE: [PHP-WIN] mySQL and ODBC

2002-05-23 Thread Asendorf, John
I don't believe so. I've gone to using adoDB ( http://php.weblogs.com/ADODB ) for everything. Perhaps it has a solution for you? I know it has a get_insert type of statement, but I've never used it. - John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.l

[PHP-WIN] Cannot load ISAPI Filter DLL

2002-05-23 Thread Rich Gray
Win2K IIS5.0 PHP 4.2.1 I am trying to configure IIS to load PHP as an ISAPI module - but every time the service starts I get the following error in the event log... The HTTP Filter DLL C:\WINNT\system32\php4isapi.dll failed to load. The data is the error. : e6 03 00 00 æ... Ca

[PHP-WIN] mySQL and ODBC

2002-05-23 Thread Eric Tonicello
Hi ! There is an equivalent of : mySQL_insert() in : Unified ODBC functions ??? Thanks for any help ! ___ Eric TONICELLO Faculty of Architecture, Civil and Environmental Engineering SWISS FEDERAL INSTITUTE OF TECHNOLOGY LAUSANNE Email : [EMAIL

php-windows Digest 23 May 2002 12:39:41 -0000 Issue 1158

2002-05-23 Thread php-windows-digest-help
php-windows Digest 23 May 2002 12:39:41 - Issue 1158 Topics (messages 13930 through 13937): Apache & IIS with PHP on Same System 13930 by: Tim Greenleaf Re: windows 2000 server --- crashing 13931 by: Clay Culver Varying Results Creating Table 13932 by: Tim Greenlea

[PHP-WIN] Accessing CDO with PHP

2002-05-23 Thread R.S. Herhuth
Hi, Has anyone on this list successfully accessed CDO using the COM support in PHP version 4.2.1? I would be greatful if they would share configuration tips. I have tried running this script a thousand times with no success: To = '[EMAIL PROTECTED]'; $message->From = '[EMAIL PROTECTED]'; $me

[PHP-WIN] GD

2002-05-23 Thread Brian McGarvie
When I try to use the GD lib, it seems to create blank/errorsome images? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: [PHP] PHP version 4.2 and above

2002-05-23 Thread Miguel Cruz
On Wed, 22 May 2002, Opere, James wrote: > I have aproblem with php >= 4.2.I'm working on graphics but when i install > php4.2, i get an error that it doesn't support GD library. > Is there anybody who has any idea as to how it can be possible to use the > above versions and still run my scripts s