Ok, since I never really got an hang on regex in PHP, it would be awesome if someone could link to a understandable article...
In this case i want to find a value in a string.
if example
$string = "blah blah blha lorem ipsum [get_this_value=10] more lorem ipsum";
i would like a function that returns "10". it would be loverly if it was stored in array and that the function can retrieve many of them if there's multiple of these i want them in an array.
$string = "blah blah blha lorem ipsum [get_this_value=10] more lorem ipsum [get_this_value=9] etc etc";
would return array(10, 9) and so on...