RE: [PHP] Response.Write [OK]

2001-03-21 Thread Jon Haworth

You could investigate www.php.net/echo, I think it's what you're after.

Cheers
Jon


-Original Message-
From: AJDIN BRANDIC [mailto:[EMAIL PROTECTED]]
Sent: 21 March 2001 12:05
To: [EMAIL PROTECTED]
Subject: [PHP] Response.Write [OK]


Hi,

I have built a shopping cart and have made connection to an Internet 
payment company.  Now once transaction is processed they want from my 
confirmation page to receive an "[OK]".  How can I do this with php3/4?

Response.Write"[OK]" is what ASP uses, I think???


Thanks

Ajdin 


**
'The information included in this Email is of a confidential nature and is 
intended only for the addressee. If you are not the intended addressee, 
any disclosure, copying or distribution by you is prohibited and may be 
unlawful. Disclosure to any party other than the addressee, whether 
inadvertent or otherwise is not intended to waive privilege or confidentiality'

**

-- 
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] Response.Write [OK]

2001-03-21 Thread AJDIN BRANDIC

You think I need to do something like

echo'Response.Write[OK]';

This will print Response.Write [OK] on he screen or

Ajdin


On Wed, 21 Mar 2001, Jon Haworth wrote:

 You could investigate www.php.net/echo, I think it's what you're after.
 
 Cheers
 Jon
 
 
 -Original Message-
 From: AJDIN BRANDIC [mailto:[EMAIL PROTECTED]]
 Sent: 21 March 2001 12:05
 To: [EMAIL PROTECTED]
 Subject: [PHP] Response.Write [OK]
 
 
 Hi,
 
 I have built a shopping cart and have made connection to an Internet 
 payment company.  Now once transaction is processed they want from my 
 confirmation page to receive an "[OK]".  How can I do this with php3/4?
 
 Response.Write"[OK]" is what ASP uses, I think???
 
 
 Thanks
 
 Ajdin 
 
 
 **
 'The information included in this Email is of a confidential nature and is 
 intended only for the addressee. If you are not the intended addressee, 
 any disclosure, copying or distribution by you is prohibited and may be 
 unlawful. Disclosure to any party other than the addressee, whether 
 inadvertent or otherwise is not intended to waive privilege or confidentiality'
 
 **
 
 -- 
 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 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] Response.Write [OK]

2001-03-21 Thread techzeus

no.

Imagine Response.write as echo.

so it will be

echo "OK";

PHP doesn't parse ASP tags

- Original Message -
From: "AJDIN BRANDIC" [EMAIL PROTECTED]
To: "Jon Haworth" [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, March 21, 2001 8:24 PM
Subject: RE: [PHP] Response.Write [OK]


 You think I need to do something like

 echo'Response.Write[OK]';

 This will print Response.Write [OK] on he screen or

 Ajdin


 On Wed, 21 Mar 2001, Jon Haworth wrote:

  You could investigate www.php.net/echo, I think it's what you're after.
 
  Cheers
  Jon
 
 
  -Original Message-
  From: AJDIN BRANDIC [mailto:[EMAIL PROTECTED]]
  Sent: 21 March 2001 12:05
  To: [EMAIL PROTECTED]
  Subject: [PHP] Response.Write [OK]
 
 
  Hi,
 
  I have built a shopping cart and have made connection to an Internet
  payment company.  Now once transaction is processed they want from my
  confirmation page to receive an "[OK]".  How can I do this with php3/4?
 
  Response.Write"[OK]" is what ASP uses, I think???
 
 
  Thanks
 
  Ajdin
 
 
  **
  'The information included in this Email is of a confidential nature and
is
  intended only for the addressee. If you are not the intended addressee,
  any disclosure, copying or distribution by you is prohibited and may be
  unlawful. Disclosure to any party other than the addressee, whether
  inadvertent or otherwise is not intended to waive privilege or
confidentiality'
 
  **
 
  --
  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 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 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] Response.Write [OK]

2001-03-21 Thread Matt Williams


 
 I have built a shopping cart and have made connection to an Internet 
 payment company.  Now once transaction is processed they want from my 
 confirmation page to receive an "[OK]".  How can I do this with php3/4?
 
 Response.Write"[OK]" is what ASP uses, I think???

try 

echo "scriptalert('OK')/script";

I think this is the same thing

M@

-- 
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] Response.Write [OK]

2001-03-21 Thread AJDIN BRANDIC

OK

I have done this.  

Thanks guys

Ajdin

On Wed, 21 Mar 2001 [EMAIL PROTECTED] wrote:

 no.
 
 Imagine Response.write as echo.
 
 so it will be
 
 echo "OK";
 
 PHP doesn't parse ASP tags
 
 - Original Message -
 From: "AJDIN BRANDIC" [EMAIL PROTECTED]
 To: "Jon Haworth" [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, March 21, 2001 8:24 PM
 Subject: RE: [PHP] Response.Write [OK]
 
 
  You think I need to do something like
 
  echo'Response.Write[OK]';
 
  This will print Response.Write [OK] on he screen or
 
  Ajdin
 
 
  On Wed, 21 Mar 2001, Jon Haworth wrote:
 
   You could investigate www.php.net/echo, I think it's what you're after.
  
   Cheers
   Jon
  
  
   -Original Message-
   From: AJDIN BRANDIC [mailto:[EMAIL PROTECTED]]
   Sent: 21 March 2001 12:05
   To: [EMAIL PROTECTED]
   Subject: [PHP] Response.Write [OK]
  
  
   Hi,
  
   I have built a shopping cart and have made connection to an Internet
   payment company.  Now once transaction is processed they want from my
   confirmation page to receive an "[OK]".  How can I do this with php3/4?
  
   Response.Write"[OK]" is what ASP uses, I think???
  
  
   Thanks
  
   Ajdin
  
  
   **
   'The information included in this Email is of a confidential nature and
 is
   intended only for the addressee. If you are not the intended addressee,
   any disclosure, copying or distribution by you is prohibited and may be
   unlawful. Disclosure to any party other than the addressee, whether
   inadvertent or otherwise is not intended to waive privilege or
 confidentiality'
  
   **
  
   --
   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 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 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 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]