Hi. 🙂
I'm sure this isn't hard to achieve but I can't figure out how to nail it.
Basically, what I have is a row of data in mysql already populated but I need to add additional data to the begining of row while keeping the other data in place after it.
eg.
test 1, test 2, test 3
I just need to add new data to the start:
test 0, test 1, test 2, test 3
This is what I have been working with but obviously it replaces everything.
$test_0 = "test 0";
UPDATE test.data_table
SET data = $test_0
WHERE data_id = 1 ";
Thanks in advance. 🙂