Consider following situation:
- We have location A where we have our online store.
- We have location B where we have payment processing. Server is dedicated to do only payment processing jobs
We can ask for credit card details at server A, and send it via POST to server B - OR - We can ask for credit card details at server B using iframe, and send it via POST to same server - OR - redirect user to payment gateway B, then redirect user back to my site A
- Server A fails vulnerabity test
- Server B passes vulnerabity test
So basically B is our small payment gateway. And we don't store any card details at any time.
Is it PCI compilant?

actionparameter such that the POST goes directly from the user to B. In the second example, a page is sent from A that uses an<iframe>to pull the form from B, and then the POST goes directly from the user to B. Can you confirm or clarify this? – Ladadadada Mar 12 at 10:32<iframe src="site B">where is card details form which sends data to itself – user21886 Mar 12 at 11:32"Is it PCI Compliant"This could not possibly be answered, for obvious reasons. Perhaps what you mean is, can this feature comply with requirement X of PCI, depending on implementation. Or are you asking "does this system need to be PCI compliant". Or something else... Please clarify and focus your question. – AviD♦ Mar 12 at 14:32