[PHP] live Counter

2002-03-04 Thread olev rumm

Hello
How can I monitor how many visitors are currently on line, with out
refreshing the frame - like a live monitor
Olev



-- 
PHP General Mailing List (http://wwwphpnet/)
To unsubscribe, visit: http://wwwphpnet/unsubphp




[PHP] Re: Email MIME Support?

2002-03-01 Thread olev rumm

Have a same problem.
Moved my mime stuff just for testing to other server and
not working at all.
working version www.toolmecindustries.com/submform.php
not workin version at http://streetrave.tartu.ee/toolmec/submform.php

what to do - good question..
Olev.

Steven Walker [EMAIL PROTECTED] wrote in message
news:[EMAIL PROTECTED];
 Hello,

 I've just moved my website to a new server and sendmail is not working
 the same. My email messages (sent via mail()) are coming out blank or
 with mime attachments. To verify my sanity, I tested this same script on
 the old server and it came through fine. The new server seems to like
 only plain text emails with no headers.

 Does mime support have to be enabled for sendmail?

 Steven J. Walker
 Walker Effects
 www.walkereffects.com
 [EMAIL PROTECTED]




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




[PHP] Ok Gurus Shake your nudels !!!

2002-03-01 Thread olev rumm

Mime problem.
I have my web form here www.toolmecindustries.com/submform.php

Now my email recieves all the contens thruogh [EMAIL PROTECTED] (fields
what customer filles out)
but attachment (picture fail) is shown like encrypted
here:

rewfg/wr;tlkmbwsl/kw;relktnh;wlkfdvbs.kdfnghb/asdfmgbn/.slfg
rewfg/wr;tlkmbwsl/kw;relktnh;wlkfdvbs.kdfnghb/asdfmgbn/.slfg

all like that.

Now I did an account with hotmail, yahoo and some other mail services
and sended this stuff through them - it works I recieve everything !!

Asked my ISP - they told  that it is 100% my script's problem.
How is it possible?
Olev



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




[PHP] problem with mime mail (attachment part)

2002-02-28 Thread olev rumm

Hello.
Have a submission form on my website with attachment possibility.
Now, the problem is that it submits all the fields and takes the picture
file
with it.But when i recieve it in my outlook or outl.exprss the image is
like encrypted - all in zeros and ones mixed with some other stuff.

I changed the the destination adress to my hotmail and yahoo mail - it
works.
Talked to my isp boys they said that problem is in my script...

Ok because Im not very good with it - I guess I need some advise here
please.

Downloaded the script from www.phpguru.net it had good rewievs.

///
This is mail.php part

///
?
 $Header = Header\n;
 $Footer = \Footer\n;

 include('class.html.mime.mail.inc');
 $mail = new html_mime_mail(array('X-Mailer: Html Mime Mail Class'));

 $text = '';
 $mail_text = '';
 while(list($key, $val) = each($HTTP_POST_VARS)) {
  $val=stripslashes($val);
  $text .= b$key/b = $valbr;
  $mail_text .= $key = $val\n;
 }
$mail-add_text( $header.$mail_text.$footer );

 if (is_uploaded_file($HTTP_POST_FILES['attachment']['tmp_name'])) {
  $fattach = $mail-get_file($HTTP_POST_FILES['attachment']['tmp_name']);
  $mail-add_attachment($fattach, $HTTP_POST_FILES['attachment']['name'],
'application/zip');
 }

 $MailToAddress = [EMAIL PROTECTED];
 $MailSubject = New customer's posting;
if (!$MailFromAddress) {
 $MailFromAddress = [EMAIL PROTECTED];
}

 if( $mail-build_message() ) {
  $send_ok = $mail-send('', $MailToAddress, '', $MailFromAddress,
$MailSubject,
'');
 } else {
  $send_ok = 0;
 }
?

//
and this is on top of the form
/
form onSubmit=return validForm(this) name=form1 ACTION=mail.php
 METHOD=post ENCTYPE=multipart/form-data


and this is the attachment field
/
input type=hidden name=MAX_FILE_SIZE value=200
input name=attachment type=file


/

Any ideas please
Thanks Olev




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




[PHP] attachment problem

2002-02-08 Thread Olev Rumm

Hello gurus, need some help here please.
I have mail php script with out attachment possibilities.
How can I add attachment in to this one? 


?
$MailToAddress = [EMAIL PROTECTED];
$MailSubject = subject;
if (!$MailFromAddress) {
$MailFromAddress = [EMAIL PROTECTED];
}
$Header = header;
$Footer = Footer;
?
html
body bgcolor=#FF
font face=Arialcenter
The following information has been delivered:
/center
?
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
$val=stripslashes($val);
echo  b$key/b = $valbr;
$Message .= $key = $val\n;
}
 
if ($Header) {
$Message = $Header.\n\n.$Message;
}

if ($Footer) {
$Message .= \n\n.$Footer;
}

mail( $MailToAddress, $MailSubject, $Message, From: $MailFromAddress);
?
/
last part I changed like this:
mail( $MailToAddress, $MailSubject, $Message, From: $MailFromAddress, 
$attachment);

and there are forms in my html:

FORM name=your_file value=200input name=attachment type=file
input type=text name=MailFromAddress
input type=submit value=Submit

/
I recieve the mail with all the req. fields, but attachment is not picked up,
instead it writes:
Attacment=c:\picture.gif 

So what is wrong?



[PHP] Re: attachment via mail PHP

2002-02-03 Thread Olev Rumm

aloo...
Olev Rumm [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
Hello

I was looking a way to fill a forms on line and send them over via the
server.

 Found a good(in my mind) and simple php mail skript

 from http://open.appideas.com/phpMailForm/source.php



 I managed to get it working. In my form there is a upload the the file
section.

 like this:

 FORM name=your_file value=200input name=attachment
type=file

 with max value of 2megs.

 It's not working. Pecause Im absolutely new in this I dont have a any idea
how to

 implement attachment part into this script.Original script is here:



 ?

 $MailToAddress = [EMAIL PROTECTED];

 $MailSubject = Equipment Posting;

 if (!$MailFromAddress) {

 $MailFromAddress = [EMAIL PROTECTED];

 }

 $Header = ;

 $Footer = ;

 ?

 html

 body bgcolor=#FF

 font face=Arialcenter

 The following information has been delivered:

 /center



 ?

 if (!is_array($HTTP_POST_VARS))

 return;

 reset($HTTP_POST_VARS);

 while(list($key, $val) = each($HTTP_POST_VARS)) {

 $GLOBALS[$key] = $val;

 $val=stripslashes($val);

 echo b$key/b = $valbr;

 $Message .= $key = $val\n;

 }



 if ($Header) {

 $Message = $Header.\n\n.$Message;

 }



 if ($Footer) {

 $Message .= \n\n.$Footer;

 }



 mail( $MailToAddress, $MailSubject, $Message, From:
$MailFromAddress);

 ?

 brbr

 bThank You!/b

 brbr

 a href=? echo $HTTP_REFERER; ?Return To The Mail Form/abrbr

 a href=/Home Page/abrbr



 I dont know if I'm explained correctly so please excuse me.

Can anybody help please.

 Olev.





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




[PHP] attachment via mail PHP

2002-02-02 Thread Olev Rumm

Hello

I was looking a way to fill a forms on line and send them over via the server.

 Found a good(in my mind) and simple php mail skript

 from http://open.appideas.com/phpMailForm/source.php

 

 I managed to get it working. In my form there is a upload the the file section.

 like this:

 FORM name=your_file value=200input name=attachment type=file

 with max value of 2megs.

 It's not working. Pecause Im absolutely new in this I dont have a any idea how to

 implement attachment part into this script.Original script is here:

 

 ?

 $MailToAddress = [EMAIL PROTECTED];

 $MailSubject = Equipment Posting;

 if (!$MailFromAddress) {

 $MailFromAddress = [EMAIL PROTECTED];

 }

 $Header = ;

 $Footer = ;

 ?

 html

 body bgcolor=#FF

 font face=Arialcenter

 The following information has been delivered:

 /center

 

 ?

 if (!is_array($HTTP_POST_VARS))

 return;

 reset($HTTP_POST_VARS);

 while(list($key, $val) = each($HTTP_POST_VARS)) {

 $GLOBALS[$key] = $val;

 $val=stripslashes($val);

 echo b$key/b = $valbr;

 $Message .= $key = $val\n;

 }

 

 if ($Header) {

 $Message = $Header.\n\n.$Message;

 }

 

 if ($Footer) {

 $Message .= \n\n.$Footer;

 }

 

 mail( $MailToAddress, $MailSubject, $Message, From: $MailFromAddress);

 ?

 brbr

 bThank You!/b

 brbr

 a href=? echo $HTTP_REFERER; ?Return To The Mail Form/abrbr

 a href=/Home Page/abrbr

 

 I dont know if I'm explained correctly so please excuse me.

Can anybody help please.

 Olev.




[PHP] how to add attachment

2002-02-02 Thread Olev Rumm

Hello

 I was looking a way to fill a forms on line and send them over via the server.

 

 Found a good(in my mind) and simple php mail skript

 from http://open.appideas.com/phpMailForm/source.php

 

 I managed to get it working. In my form there is a upload the the file section.

 like this:

 FORM name=your_file value=200input name=attachment type=file

 with max value of 2megs.

 It's not working. Pecause Im absolutely new in this I dont have a any idea how to

 implement attachment part into this script.Original script is here:

 

 ?

 $MailToAddress = [EMAIL PROTECTED];

 $MailSubject = Equipment Posting;

 if (!$MailFromAddress) {

 $MailFromAddress = [EMAIL PROTECTED];

 }

 $Header = ;

 $Footer = ;

 ?

 html

 body bgcolor=#FF

 font face=Arialcenter

 The following information has been delivered:

 /center

 

 ?

 if (!is_array($HTTP_POST_VARS))

 return;

 reset($HTTP_POST_VARS);

 while(list($key, $val) = each($HTTP_POST_VARS)) {

 $GLOBALS[$key] = $val;

 $val=stripslashes($val);

 echo b$key/b = $valbr;

 $Message .= $key = $val\n;

 }

 

 if ($Header) {

 $Message = $Header.\n\n.$Message;

 }

 

 if ($Footer) {

 $Message .= \n\n.$Footer;

 }

 

 mail( $MailToAddress, $MailSubject, $Message, From: $MailFromAddress);

 ?

 brbr

 bThank You!/b

 brbr

 a href=? echo $HTTP_REFERER; ?Return To The Mail Form/abrbr

 a href=/Home Page/abrbr

 

 Can anybody help please.I dont know if I'm explained correctly so please excuse me.

 Olev.