在数据库中插入动态值

时间:2015-08-10 09:16:31

标签: php mysql sql

我想根据同一个表中另一个字段的值在表格中的字段中插入不同的值...

以下是提到的代码......

if($resultInsert)

    {
       $result=mysql_query("SELECT MAX(propertys_uid) FROM `q43qy_jomres_propertys`",$conn);
        $row=mysql_fetch_row($result);
        //echo $row[0];
        $custom=array('AreaID','ChainCode','Distance','GEO_ConfidenceLevel','HotelCityCode','HotelCode','NumFloors');
        for($i=0;$i<7;$i++)
        {
        //echo $custom[$i];
        $insert_custom="INSERT INTO `q43qy_jomres_custom_property_fields_data`(`fieldname`,`data`,`property_uid`)
                     VALUES('$custom[$i]','$rowTable[AreaID]','$row[0]')";
        echo $insert_custom;
        $resultInsertCustom = mysql_query($insert_custom);            
        //echo "Data Inserted.";
        }

问题在于我希望使用for循环更改每个$rowTable[AreaID]的值$custom[$i] ...我该怎么做?

0 个答案:

没有答案