[PHP] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread Salty Marine


Greetings to All of You on the List:

How can I suppress my variables from showing up in the address bar?  I have
a form that's passing information to a script of mine, via the address bar.

http://foobar.com/EmailList.php3?Newsletter_ID=4732Subscription_Action=Remo
ve[EMAIL PROTECTED]

How can I suppress my variables from showing up in the address bar?

Regards,
Salty


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General 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] Any Free Web Hosts that still support the mail( ) function out there?

2001-09-21 Thread Salty Marine


Greetings to Felix and All:

I must agree that http://coolfreepages.com/ is a really good free hosting
service that supports PHP.  However, soon as you use mail( ), it generates
an error message:
Fatal error: Call to undefined function: mail() in ...

Regards,
Salty

-Original Message-
From: Felix [mailto:[EMAIL PROTECTED]]
Sent: Friday, September 21, 2001 4:58 PM
To: Salty Marine; [EMAIL PROTECTED]
Subject: Re: [PHP] Any Free Web Hosts that still support the mail( )
function out there?


Try coolfreepages.com

Felix
- Original Message -
From: Salty Marine [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, September 21, 2001 2:20 PM
Subject: [PHP] Any Free Web Hosts that still support the mail( ) function
out there?



 Greetings to You:

 Any Free Web Hosts that still support the mail( ) function out there?

 Regards,
 Salty

 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com


 --
 PHP General 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]


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General 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]




[PHP] Any Free Web Hosts that still support the mail( ) function out there?

2001-09-21 Thread Salty Marine


Greetings to You:

Any Free Web Hosts that still support the mail( ) function out there?

Regards,
Salty

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General 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]




[PHP] How do I tell the mail function that the message content is HTML?

2001-09-18 Thread Salty Marine


Greetings to You:

How do I tell the mail function that the message content is HTML?

Regards,
Salty



RE: [PHP] The Salty Marine's eMail eMuster Subscription

2001-09-18 Thread Salty Marine


Greetings to Duncan and all those on the list:

Lol, I've removed the [EMAIL PROTECTED] address from the
distribution list.  Sorry for the error, I must remember to lay off the
mountain dew and twinkies and get some sleep after thirty hours, lol.

Regards,
Salty

-Original Message-
From: Duncan Hill [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 18, 2001 7:30 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: [PHP] The Salty Marine's eMail eMuster Subscription


On 18 Sep 2001 [EMAIL PROTECTED] wrote:


 Thank you for subscribing to the Salty Marine's eMail eMuster newsletter,

Ooh.. some other mad list that doesn't have validation of subscribed
accounts.  Or someone being bored.

--

Sapere aude
My mind not only wanders, it sometimes leaves completely.


--
PHP General 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]


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


-- 
PHP General 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]




[PHP] Comining variables into a single string

2001-09-16 Thread Salty Marine


Greetings to All:

I'm inexperienced, although enthusiastic about using PHP.  I want to write
data more effectively to a file.

This doesn't work:  fputs($frank, Testing  $whatever  more testing
\n\n\n);
Right now, all I know is using three separate fputs statements.  I'd like to
use just one.

This works:
$frank = fopen(VisitorInfo.txt,r+);

fputs($frank, date(h:i A));

fputs($frank, \n);

fputs($frank, date(F d, Y));

fputs($frank, \nIP Address: );

fputs($frank, $ipaddr);

fputs($frank, \nHost: );

fputs($frank, $what);

fputs($frank, \n\n\n);

fclose ($frank);


Regards,
Salty



[PHP] Getting screen resolution and color depth

2001-09-16 Thread Salty Marine


Greetings to You:

How do I get the user's screen resolution and color depth?  Here's how it is
done in Javascript.  I want to do it and put the results into a PHP varibal.

Scriptdocument.write(screen.width +  x  + screen.height)/script
Scriptdocument.write(screen.colorDepth +  bit)/script

Regards,
Salty