Create a new php file and just put the following in it:

<?php
phpinfo();
?>

should get you all the info you need

Cheers

Lee
----- Original Message ----- 
From: "Dean Ouellette" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, July 21, 2002 9:08 PM
Subject: RE: [PHP] No text in form submission


> Is there a way to tell, just contacted my host and they do not know,
> they said they could look it up Monday when back in office
> 
> -----Original Message-----
> From: Jason Wong [mailto:[EMAIL PROTECTED]] 
> Sent: Sunday, July 21, 2002 2:26 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] No text in form submission
> 
> On Monday 22 July 2002 01:52, Dean Ouellette wrote:
> > Been working on trying to get form submission to work.
> >
> > Now have it so when click enter it e-mails me, but there is no text
> > subitted in the e-mail
> 
> What version of php are you using?
> 
> > <?
> > $MailToAddress = "[EMAIL PROTECTED]";
> > $MailSubject = "Group volunteer  list";
> > if (!$MailFromAddress) {
> >     $MailFromAddress = "$email";
> >     }
> > $Header = "";
> > $Footer = "";
> >
> > foreach($_POST as $key => $val)
> >     {
> >     $val = stripslashes($val);
> >     $Message .= "$key = $val\n";
> >     }
> 
> What do you see when you:  print_r($_POST)
> 
> 
> -- 
> Jason Wong -> Gremlins Associates -> www.gremlins.com.hk
> Open Source Software Systems Integrators
> * Web Design & Hosting * Internet & Intranet Applications Development *
> 
> /*
> <JALH> regex are more than some crappy posix thing
> <JALH> they are an art form
> 
> - Marc Zealey on #kernelnewbies
> */
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 
> 



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to