Hello!
I need a function to do for me the following: from a database, looking-like this one: http://livescore-bg.net/mysql.html , to be extracted consecutively
all the values, untill a value from the column 'bukva' is found in the string
$string = "xbz";
, after that on the screen to be printed the appropriate value from column 'bukva1' (in this case b1), and the whole appropriate row (in this case the row with id=2), to be deleted from the database.
For example:
for the string:
$string = "xbz";
to have finally printed on the screen "b1", and the database to look after the whole operation like this:
http://livescore-bg.net/mysql2.html
I tried to solve the problem, but I still can't... Do you have any ideas?