Skip to content

Tag: mysql

How to use mysqli_query() in PHP?

I’m coding in PHP. I have the following mySQL table: I’m trying to use the mysqli_query function in PHP to DESCRIBE the table. Here’s my code: The documentation says For successful SELECT, SHOW, DESCRIBE or EXPLAIN queries mysqli_query() will return a mysqli_result object. But from there I d…

Search tags in mysql table with PHP

I have a table with some submissions, this table has a tags field, and I need to search in it. The data is saved in JSON format in the table, like this: [“basic”,”example”,”html”,”chart”] I’m trying …

Bidding System PHP-MYSQL

I am working on the bidding system app, stuck on how to select the appropriate data and display. See the table screenshot. What I trying to retrieve is for example for bid_id p1 I want latest fbid,name, total amount of all 3 records having bid_id=p1. Answer I believe this is the query you are looking for&#823…