I have written a View that essentially imports node data from a Drupal database on an external server. It works perfectly EXCEPT that the node Body text contains PHP code (the node is created in Drupal using the PHP filter). When I display that field in Views on the local server all of the PHP code has been stripped.

Is there any way to preserve the PHP code (it is being used to create an email link)? On the original site the email link points to a Webform but on the second (importing) site it needs to just be a mailto link (the second site is a Mobile version of the other site). The PHP code is determining which site by looking at $_SERVER["SERVER_NAME"] and then constructing the email link accordingly (works fine on the native system).

Thanks