append string to each row in a specified column
append string to each row in a specified column
Hi,
How can I append a string to each row in a specified column? One of my columns contains file name, and I would like to add FileName.txt to each of the rows in the 3rd column?
All my data comes from SQL database.
All help is much appreciated :)
How can I append a string to each row in a specified column? One of my columns contains file name, and I would like to add FileName.txt to each of the rows in the 3rd column?
All my data comes from SQL database.
All help is much appreciated :)
This discussion has been closed.
Replies
$before_data = 'Listen';
$aRow[ $aColumns[1] ] = $before_data . $aRow[ $aColumns[1] ] . $after_data;