[PHP] Response.Write [OK]

2001-03-21 Thread AJDIN BRANDIC
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 -- PHP

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

RE: [PHP] Response.Write [OK]

2001-03-21 Thread AJDIN BRANDIC
: 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

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]

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

Re: [PHP] Response.Write [OK]

2001-03-21 Thread AJDIN BRANDIC
"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,