Hey
I have the following:
<?php echo $_COOKIE["name"];?>
<?php echo $_item->getId();?>
With the $_COOKIE["name"] having a value of "hi" and the $_item->getId() having a value of "5" (or 5, irrelevent as it is all strings)
what if I want to do something like (fake nonworking code):
concat joins 2 strings.
echo concat($_COOKIE["name"],$_item->getId());
Which would print out "hi5".
How can I do this?
Thank you