Answer the question
In order to leave comments, you need to log in
How to organize a web interface for working with a database?
Greetings! There is a local database in mdb format. Please tell me how to create a web interface for accessing this database and perform various queries on the html page (selection, mainly by parameters).
Where to begin?
Answer the question
In order to leave comments, you need to log in
returns a two-dimensional array with values and with and without parentheses
Use look ahead/back:
$text = 'qwe {111} {+222} {-333} {+12e3}';
$preg = '/(?<=\{) ([+-]* \d+) (?=\})/x';
preg_match_all($preg, $text, $match);
var_export($match);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question