大家好,我是php的新手。我在 php 中有一个代码我想像这样在 mysql 中添加数据
表格样本
id value1 value2 P_id
1 100 200 10
2 200 50 10
这是我的代码
$query = mysql_query("SELECT * from sample P_id = '10'");
while($row = mysql_num_rows($query)){
// Here is the condition I don't now what will be the code if I want to add
}
像这样我希望 value1 的结果是 300 和 value2 250 当我显示时你能帮我解决这个问题吗 非常感谢