I have a common field on all my table for the lot number of a product,
Code: Select all
xxx_lot_number
Is there a way to concatenate the "#form_code#" hash cookie to the text _lot_number to create the hash cookie xxx_lot_number?
So far I've tried
Code: Select all
$lot = "#form_code#"."lot_number";
Code: Select all
$lot = "#form_code#".'_lot_number';
Tried to concatenate the " and # at either side with
Code: Select all
$lot = '"#'.'#form_code#'.'_lot_number#"';
Is this possible to create a functional hash cookie this way?