I have following string stored in my DB Table.
Tahseen A test1 TEST TRANSFER LTD BBP
As you can see it has multiple spaces in between words. But when get this string using following code
<td class="transactions"><?=$fullRS[$i]["columnName"]?></td>
The result on my php page shows its value as:
Tahseen A test1 TEST TRANSFER LTD BBP
You can see it removes extra spaces in between words of the string. Question is how can i show the same string that is stored i DB on php page?
var_dump()of$fullRS[$i]["columnName"]?transactionslooks like its doing some sort of padding.