Skip to content

Search returning no results in “reverse” order

I have a database filled with addresses. 6 columns (id, Name, Address, City, State, Zip, dt) My code is run with ajax for live search. Currently I can mostly find what I’m looking for with my queries. The problem I’m running into is this. If I search for “90210 Steve Jones” I get no re…

Rollbar is not seen by Laravel 8.0

I have installed the Rollbar 7.0 into Laravel 8.0. PHP version is 7.4 I am trying to send a test exception message using a simple Console command but that sends me nothing. My configs are the following: config/app.php: config/logging.php: config/services.php (but seems to be that it doesn’t work) app.en…

Getting id from a textarea in a while loop in PHP for updating in mysql

I have a table where is one week displayed (each row is one day). I get the rows from a while loop from my database. The rows are displayed in bootstrap accordions. There is a textarea in every accordion row where the user can input (update) some text. I want to update this text into my database. It should up…