Thanks for replying. After searching all over the web, I finally was able to create and implement a W3C Validated P3P.
I didn't really find that site too helpful by itself. The problem I found to be the most problematic for me (still a newbie) was correctly implementing the header portion of the instructions.
I was using this, not knowing that not using a delimeter separated header, the latter one would overwrite the first one:
<?php
header("P3P: policyref=\"http://www.mysite.com/w3c/p3p.xml\"");
header("P3P: CP=\"IDC DSP COR CURa ADMa DEVa TAIa CONa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA\"");
?>
When it should have really been:
<?php
header("P3P: policyref=\"http://www.mysite.com/w3c/p3p.xml\", CP=\"IDC DSP COR CURa ADMa DEVa TAIa CONa OUR DELa BUS IND PHY ONL UNI PUR COM NAV DEM STA\"");
?>
I found this solution on the Zend website. Thanks for replying...
I hope that this post helps someone else in the future.