Jump to content

mysqli_query problems


raytravel

Recommended Posts

I wrote a simple mysql record update.

mysqli_query($link, "UPDATE photo01 SET PhotoText='abcd' WHERE id= '1' ");

Work fine until I use a variable:

mysqli_query($link, "UPDATE photo01 SET PhotoText= $ZZ  WHERE id= $x ");

If $ZZ contains only number it updated the cell.

ANY letters does not.

The cell is text and standard US ASCII

I tried:

mysqli_query($link, "UPDATE photo01 SET PhotoText={$ZZ} WHERE id={$x}");

same problem

 

Here is my loop:

<?php
for ($x = 0; $x < 131 ;$x++) {
$ZZ = $_POST["z".$x];
if ($ZZ != '') {

mysqli_query($link, "UPDATE photo01 SET PhotoText={$ZZ} WHERE id={$x}");
}
}

?>

Link to comment
Share on other sites

This finally worked:

<?php

for ($x = 0; $x < 131 ;$x++)
{
$ZZ = $_POST["z".$x];
if ($ZZ != '')
{echo $x.' = '.$ZZ.'<br>';

$sql='UPDATE photo01 SET PhotoText = ? WHERE id = ?';
$PhotoText = $ZZ;
$id_equal_to = $x;
 
/* Prepare statement */
$stmt = $conn->prepare($sql);
if($stmt === false) {
  trigger_error('Wrong SQL: ' . $sql . ' Error: ' . $conn->error, E_USER_ERROR);
}
 
/* Bind parameters. TYpes: s = string, i = integer, d = double,  b = blob */
$stmt->bind_param('si',$PhotoText,$id_equal_to);
 
/* Execute statement */
$stmt->execute();
 
$stmt->close();
}
}
?>

Link to comment
Share on other sites

This actually leaves a lot to be desired, even if it may “work” (whatever that means).

  • Numbering variables or keys is awful, don't do that. We have arrays for this purpose: Simple use the name photo_descriptions[] (the brackets are important) for all input fields, and $_POST['photo_descriptions'] will be an array of all values.
  • Please don't tell me you've created a separate table for every single photo.
  • When you ask people the enter 131 friggin' photo descriptions, it's time to worry about write conflicts. Imagine the following scenario: User A and user B both open the form (it could also be one person with two tabs). A makes major changes and saves them. B only changes a few descriptions and also saves the form. Now B has unknowingly overwritten the entire work of A. I'd be pissed.
  • Do you really want to run all 131 queries even if the user has only changed a single description?
  • There's absolutely no need to manually check every query for errors. MySQLi can report errors itself.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.