Jump to content

Updating fields where field = ''


-Karl-

Recommended Posts

This is confusing the hell out of me. I have my code, with a working query:

<?php
include ('config.php');
include ('functions.php');
        
        $sql = mysql_query("SELECT * FROM " . $table ." WHERE `min` = '' ORDER BY `itemid` ASC");
    while ($arr = mysql_fetch_assoc($sql)) {
        massupdateData($arr['name']);
    }
?>

 

If you need to see the massupdateData function just ask. Anyway, when running the query in PHPMyAdmin it works fine and displays the fields where min = '', however, when I run the PHP file. It updates items which I know definitely have some value in the min field. I don't want to post my function here, however, if you can help me I will PM you it :)

 

Thanks

~Karl

Link to comment
https://forums.phpfreaks.com/topic/204005-updating-fields-where-field/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.