Hi,
I'm using a php-processor-file. It works great, however I'm a bit concerned about the parameters I'm using in my query:
-----------------------------------
$param1 = $request->getParameter('param1');
if (isset($param1))
{
$where = "WHERE tbl.city = " . $param1 ;
}
else
$query = $connection->fetchAll("SELECT * FROM mytable WHERE $where ");
-----------------------------------
Should(n't) I be worried about sql injection?
Thanks & regards,
Paul