PDA

View Full Version : CP - displaying 2 colums of content in a 1 colum add together with /


Vaupell
02-15-2009, 08:47 PM
working in admincp now.

listing content for admin/mod

and i want to items displayed like this ItemA/ItemB

here is what im actually trying :p

$row[Rflag] = htmlspecialchars_uni($row['Rflag'] & '/' & $row['Rflagignore']);

well it runs of fine, but only shows the "right" colum
or none at all, been trying things like

$row[Rflag] = htmlspecialchars_uni($row['Rflag']) & "/" & htmlspecialchars_uni($row['Rflagignore']);

"/" '/' ...

help.. :confused:

Dismounted
02-16-2009, 04:50 AM
$row['Rflag'] = htmlspecialchars_uni($row['Rflag'] . '/' . $row['Rflagignore']);