2 diffrent analog value influenced eachother

problem Solved.

solution;

  Temperature = analogRead(LM35);                         // 1st read the value DUMMY
  Temperature = analogRead(LM35);                         // read the value from the LM35 sensor

and:

  PAvalue = analogRead(PA);                               // 1st read the value DUMMY
  PAvalue = analogRead(PA);                               // read the value from the PA output driver.

thanks all for the help.