This topic is locked
[SOLVED]

 error when filter lookup

4/15/2014 11:58:18 PM
PHPRunner General questions
romaldus author



after successful login
event

$_SESSION["kodespbu"] = $data["spbu"];


i use the following where expression to filter lookup :

" kode_spbu = " . $_SESSION["kodespbu"]


Edit controls on add page hidden:

Sergey Kornilov admin 4/16/2014
  1. Make sure that this session variable is populated in fact.
  2. If kode_spbu is a text field adjust your WHERE clause as follows:

" kode_spbu = '" . $_SESSION["kodespbu"] . "'"
romaldus author 4/16/2014


  1. Make sure that this session variable is populated in fact.
  2. If kode_spbu is a text field adjust your WHERE clause as follows:

" kode_spbu = '" . $_SESSION["kodespbu"] . "'"



thanks. Solved