RE: [PHP-WIN] Combinig 2 Variables into 1

2005-04-28 Thread Wu, Jin Yong
dot operator (.) can not solve your problem? -Original Message- From: Maxwell Brodie [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 11:03 AM To: php-windows@lists.php.net Subject: [PHP-WIN] Combinig 2 Variables into 1 Hello, Could someone help me out here, I am tryimg to make t

[PHP-WIN] Combinig 2 Variables into 1

2005-04-28 Thread Maxwell Brodie
Hello, Could someone help me out here, I am tryimg to make two variables into one for example: $to = 'server'; $subject = test; $message = $variable1, $variable2; $headers = 'From: webmaster@' . $_SERVER['SERVER_NAME'] . "\r\n" . 'Reply-To: webmaster@' . $_SERVER['SERVER_NAME'] . "\r

[PHP-WIN] Page Not Found after sending form through POST method, Get Method works

2005-04-28 Thread mickbw
To illustrate the problem I'm having, I created a very simple form called TestForm.php . http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> http://www.w3.org/1999/xhtml";> Test Form Name Age I first set the method for the form to GET and the page loaded again after the submit

[PHP-WIN] Re: Newcomer

2005-04-28 Thread Jason Barnett
Please do not CC me, just write to the list. I will usually see responses. Michael wrote: Jason, I think your last answer is misleading, PHP does not by default produce markup unless you choose to output or produce markup with PHP. You can use PHP to return raw data, manipulate data in a data s

[PHP-WIN] Re: Newcomer

2005-04-28 Thread michael
Jason, I think your last answer is misleading, PHP does not by default produce markup unless you choose to output or produce markup with PHP. You can use PHP to return raw data, manipulate data in a data store etc. etc. without producing any markup at all. Infact it is not good web development

RE: [PHP-WIN] echo delayed?

2005-04-28 Thread Wu, Jin Yong
It seems that PHP has his own output buffer by default. If you want to flush output immediately, you should use flush(); http://us3.php.net/manual/en/function.flush.php Attention: you should use ob_end_flush() before flush() at first. ob_implicit_flush() will be also all right. http://us3.php.net