Friday, 14 April 2017

How to trim a part of a string, and save it in a particular string in MySQL using PHP?

Here is my code



$value = ["300","200","400","500"];


$remove = "300";


I want $value as ["200","400","500"];



please answer to this

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...