[PHP-WIN] Re: mail() on XP

2003-03-09 Thread Ben O'Neill
Find: [mail function] ; For Win32 only. SMTP = localhost In the PHP.ini file, and make sure it's set, then you'll need to be running an SMTP server (e.g. IIS). -- Ben O'Neill "John Smith" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > Is it possible to set up PHP so mail() send

php-windows Digest 9 Mar 2003 10:19:19 -0000 Issue 1625

2003-03-09 Thread php-windows-digest-help
php-windows Digest 9 Mar 2003 10:19:19 - Issue 1625 Topics (messages 18915 through 18920): Re: php_xslt: xslt_set_encoding 18915 by: Alexandru COSTIN Re: Anyone using PHP with activePDF Toolkit? 18916 by: Alexandru COSTIN mail() on XP 18917 by: John Smith 18

[PHP-WIN] Getting current page details

2003-03-09 Thread rotsky
I'm using a login routine and I'd like to return the user to the page where they started before going to the login form. I figured I could do this by grabbing the current page details, putting these into a session variable and using that to link back to the page later. So the question is, how do I

RE: [PHP-WIN] Not rhetorical: Why upgrade php when current version is working fine?

2003-03-09 Thread Svensson, B.A.T. (HKG)
Yuo might find three reasons for a version upgrade: 1) Extended (and needed) functionality 2) Security pathes 3) Support is not given for the version you use //Anders -Original Message- From: Beach, Jim To: [EMAIL PROTECTED] Sent: 7-3-03 17:01 Subject: [PHP-WIN] Not rhetorical: W

[PHP-WIN] Variable problems

2003-03-09 Thread Reggie P
I am new to php and I am having problems passing variables from one page to another. I wrote a simple script as such: name then pass to this page: I get this for the response: Notice: Undefined variable: test in E:\websites\girls\cgi-bin\insert2.php on line 8 Please help!!

[PHP-WIN] Re: Variable problems

2003-03-09 Thread Thomas Smart
in the page that recieves the variable add this: $test = $_POST['test']; "Reggie P" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am new to php and I am having problems passing variables from one page to > another. I wrote a simple script as such: > > > > > > name > >

RE: [PHP-WIN] Setting sessions variables

2003-03-09 Thread Rich Gray
> Let me get this straight - if register_globals is set to off, the best way > to assign a value to a session variable is to use: > > $_SESSION['varname'] = 'value' ; Yes - this will also work fine with register_globals set to On > > This both creates the variable and sets it. And then I can ac

[PHP-WIN] Re: Variable problems

2003-03-09 Thread Reggie P
Now I get this error Notice: Undefined index: test in E:\websites\girls\cgi-bin\insert2.php on line 7 Could I have installed something wrong? It is running on win2000 server and IIS 5 "Thomas Smart" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > in the page that recieves the vari

php-windows Digest 10 Mar 2003 02:05:26 -0000 Issue 1626

2003-03-09 Thread php-windows-digest-help
php-windows Digest 10 Mar 2003 02:05:26 - Issue 1626 Topics (messages 18921 through 18926): Getting current page details 18921 by: rotsky Re: Not rhetorical: Why upgrade php when current versio n is working fine? 18922 by: Svensson, B.A.T. (HKG) Variable problems 18

[PHP-WIN] Passing value in URL to a form

2003-03-09 Thread Stephen K Knight
Is there a way to pass a value from on html page to another on a different server through a URL and have that value input into a form. The value trying to be passed is a record id from a database. I tried retrieving the value from the URL with It carries the id number over in the URL, however it

[PHP-WIN] Passing value in URL to form

2003-03-09 Thread Stephen K Knight
I have managed to pass information through a URL and extract it and insert it into a form on a php document. Can this be done for an html document? Passing the value through the URL to an html page with form and then through a URL again into a php doc. I tried the same method I used in the php do

[PHP-WIN] PHP extensions on IIS (Java, PDF)

2003-03-09 Thread Frank Hirsch
Hi, I'm successfully running Sablotron (php_xslt.dll) on IIS and Apache. PDF (php_pdf.dll) and Java (php_java.dll) only works on Apache :-( I'm using Apache and IIS on the same machine (same PHP Version and php.ini). Any hints how to get the additional modules to work on IIS? If I call the same

[PHP-WIN] Surfing history

2003-03-09 Thread Raymond Chua Sing
I have been doing this e-commerce site and I have been having some problems with the browser saving an offline copy of my site here's the scenario: When the userlogs in the website will produce cookies for the session and for the usrid to make transactions possible when he logs out the session or

Re: [PHP-WIN] PHP extensions on IIS (Java, PDF)

2003-03-09 Thread Frank M. Kromann
If you are uisng ISAPI for IIS and mod_php for Apche you need to restart the web server each time you enable an extension (or make other changes to the php.ini file). The php.ini file is only read at startup. If you are using CGI on either server, the php.ini file will be read once per request. T

[PHP-WIN] fopen - windows - FTP - failed to create stream

2003-03-09 Thread Jonathan Almarez
I receive this warning when I try to fopen using FTP: warning: fopen(ftp://user:[EMAIL PROTECTED]/and/to/the/file.txt): failed to create stream: FTP server reports 125 Data connection already open; Transfer starting. The code that it is refering to is: $handle = fopen ("ftp://user:[EMAIL PROTECT