i have repalce a string color:#000000 with color:#ffffff.
The content in datasase with fieldname data is
style="width:720px; height:700px;font-size:13px;color:#000000"
The retrived values from the database is in
$res = $row->data;
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try php replace function PHP manual
eg:
str_replace (“#000000”, “#ffffff”, $string_var);