Hi guys,

I'm trying to send a HTML line of code to a flash file, but php is running it as html, instead of seeing it as plain text.

file.swf?name=<?php echo $code; ?>

I need to somehow echo the $code as plain text instead of php running the html.

Cheers. 🙂

    file.swf?name=<?php echo urlencode($code); ?>
    

      Perfect mate!!

      Thanks very much for the fast reply, you've saved me so much time searching google!!! 🙂

        Write a Reply...