Reputation: 19
I'm trying to pass a variable value from my php code to the r processing environment.
for example:
<?php
$val=5;
?>
<%
print (val)
%>
Obviously this doesn't work.
What is the right way to do it?
Thaks,
Yoni.
Update
I'm using rapache.
It works, but I would like to use php the react with the client.
Upvotes: 0
Views: 579
Reputation: 446
It looks like your options are
At least that's what I've been able to come up with.
Upvotes: 1