Forum Moderators: coopster

Message Too Old, No Replies

PHP and Coldfusion Integration

         

paseo

8:49 pm on Feb 5, 2007 (gmt 0)

10+ Year Member



Is there a way that nebody knows of to integrate php with coldfusion. Currently, we use a PHP user management system. Is there a way to add PHP includes into a .cfm document? We basically want to pull the $user.logged.in variable from php and use that to display data appropriate to that user in a coldfusion document.

i was researching cfinclude but this will only display the php information and not actually parse or pass the variables on.

paseo

9:42 pm on Feb 5, 2007 (gmt 0)

10+ Year Member



I could pass this variable as a "hidden" input....

something like
<form method="POST" action="submit.cfm"
<input type="hidden" value="<?php echo $variable?>">
</form>

But how would i create the variable in Coldfusion using POST method?