Skip to content

Tag: mysql

MySQL 5.7 equivalent to PHP’s json_decode()?

I’m converting some php scripts into mysql stored procedures and have come across the usage of php’s json_decode() on a result set’s data. It occurs on a field which is stored as a mediumtext,utf8,utf8_unicode_ci How can I perform the ‘json_decode()’ process using pure MySQL? Sam…

PHP MYSQL print

I have a list of results depending on the store numbers, each store number is printed with all its info, the first option “ALL” displays info from ALL the store numbers, I want the option “ALL” to just display info from store number 1, 2, and 3, not ALL of them. This is my code: Answer…

What does this $_SERVER[‘REQUEST_METHOD’] === ‘POST’ do?

A little new to php and reading some people’s code and saw this: I get what isset(…) is doing but don’t understand the what the first if statement. Especially because the if statement was working when my request method was GET but wasn’t when my request method was POST Answer say your …

Stripe, users can not download their invoice

I am working with Stripe Payment Gateway and everything is working so far, except the option, that my users can download their invoice on my website. It is possible to download an invoice inside the stripe dashboard but that is not what I need. After my users made a payment, they should be able to download th…

Save all record records using request->all in Laravel

Laravel provides a great help for developers to save all input fields of a form which is one record with one line of code. like if I want to save a form which has multiple input fields and one record to database like: then I can save it with below code and it works great: Now I have a question.