i used boxcox transformation and got a numeric variable lambda, but i can not read it in the next page, if i do: lambda<-GET$lambda i can not later read the variable "lambda" important to mention that the operation fails when between <%,%>, but in HTML or php it works, does anyone have a solution?
The Code:
<?php
echo $_GET[lambda]; <!!!!!This echo command work OK!!!!!>
if (isset($_GET["check_if_press"]) && $_GET["check_if_press"] == "Submit"){
if($_GET[clean_decide]=="yes") {
echo"
<%
csvDF<- read.csv(GET$name1, header=TRUE)
lambda<-GET$lambda <!!!!! This 2 lines create an error!!!!!!>
print(lambda)
k<-1
CleanLots<-NULL
Removed<-NULL
a<-NULL
i<-1
.
.
.
%>
";
}else {echo "no";}
}
?>
Yonatan Shalev