Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [mysqli]

The mysqli PHP extension is a PHP database driver. Not to be confused with MySQL database.

0 votes
0 answers
21 views

Error when submitting to Database: No data supplied for parameters in prepared statement [closed]

I'm building a webform that a User would fill out and then submit, adding their details into a table called atyzi_wctc in the Database. The Database is making the connection, but it keeps responding ...
user3426808's user avatar
-3 votes
0 answers
39 views

data cant be save in database [closed]

i have a registration form and i want to store the information (gender and phone included) but it didnt store in the database even the register is successful but the column for gender and phone_number ...
Lee's user avatar
  • 11
-3 votes
0 answers
24 views

File failing to upload without error message on php and mysqli [closed]

So i have a code to upload text input, image and video. but its not working. it just keeps on loading and loading it never finishes but this only happens when i put the code live on hostinger but if ...
Pro's user avatar
  • 1
-1 votes
0 answers
31 views

Can't output json_encode with PHP7.3 [duplicate]

Finally upgrading from PHP5.5 to PHP7.3 and in PHP5.5 this code works: $con=mysql_connect("localhost","user","password"); mysql_select_db("database",$con); $sql ...
Richard's user avatar
  • 33
0 votes
0 answers
17 views

MYSQL Replication But While the backup is being uploaded to the slave, the changes in the master are not received [migrated]

I am trying to do mysql replication. But I want to while the backup is being uploaded to the slave server, the changes in the master are not received. For example: I have a user table on my X db. And ...
İbrahim Gunes's user avatar
-2 votes
0 answers
24 views

Insert null in INTEGER COLUMN in mysql [duplicate]

In my mysql database we have few nullable integer and date columns. Earlier we used to enter blank string ('') in these columns when no data was there and it used to insert properly. But not sure ...
Anupam Halder's user avatar
-1 votes
0 answers
14 views

mysql->fetch_assoc() not working as per expected [duplicate]

"" Fatal error: Uncaught ArgumentCountError: mysqli_query() expects at least 2 arguments, 1 given in C:\xampp\htdocs\finca-raffledraw\save_winner.php:17 Stack trace: #0 C:\xampp\htdocs\...
VinN's user avatar
  • 1
-1 votes
1 answer
75 views

AJAX Call is not returning any data [duplicate]

I am trying to create a dependency for a project, the SQL query works and returns the data I need in PHP Admin however when I try to create the AJAX request for this all it does is return an empty ...
Alex Holmes's user avatar
0 votes
0 answers
15 views

lamp and google cloud [duplicate]

I have deployed a lamp solution on google cloud. The apache server, the ssh connection and the static ip work. Whentrying to connect to phpmyadmin though, i get this error: See error here (it says ...
PaulosK's user avatar
0 votes
1 answer
55 views

Mysql/html how to get output like this, or similar

PhpMyAdmin Looking for output like this: In Mysql/PHP, how can I get output like this, or similar (photo 2)? $start = mysqli_query($conn, $sql); if (mysqli_num_rows($start) > 0) { $row = ...
HIHAWA's user avatar
  • 19
-1 votes
0 answers
49 views

PHP 8 migration with simple script but no errors, just blank white page

I have been using the following custom code for over 12 years and it has worked perfectly. With PHP 8 I just get a blank white page with no errors. It allows me to use template files, so I can keep ...
user26136009's user avatar
0 votes
0 answers
28 views

Cant Insert Data into MySQL Database Using PHP [duplicate]

I'm facing an issue where my PHP script is not successfully inserting data into my MySQL database. Here's my code: <?php $conn = new mysqli('localhost', 'cjheller0', 'password', 'user_form_db'); $...
Caleb H's user avatar
-1 votes
0 answers
18 views

Rollback does not do anything when error occurs in my transaction mysql [duplicate]

I have written code to insert multiple rows in a table. If there is an error on any of them, I want them to rollback. The code is written in PHP: mysqli_report(MYSQLI_REPORT_ERROR | ...
aff's user avatar
  • 65
-3 votes
0 answers
52 views

PHP mysqli_connect does not continue after error [duplicate]

I am very puzzled on using the mysqli_connect() and mysqli_connect_error() in my PHP. I don't know where to look for the problem or how to solve, is it php.ini or my.ini config? Need help. I am ...
jwan's user avatar
  • 35
-1 votes
0 answers
23 views

creating a keyord tag list from a comma seperated list with PHP Mysqli [duplicate]

I have a list of keywords in a database field called "keywords", that I turn into a keyword list to display on a blog as cloud type tags. //KEYWORD TAG MANUFACURE $keywordtags="$...
Tilly's user avatar
  • 57

15 30 50 per page
1
2 3 4 5
1645