 |
|
ผมจะวนลูปเก็บข้อมูลนะครับ โดย IP มันก็มี วนลูปลงมา
Code (PHP)
$ip = "10.x.x.x"
for ($j=1;$j<=$num ;$j++)
{
$swName = exec("xxxxx.$j");
if ($swName == FALSE)
{$swName='';}
else{
$swName = substr($swName,49);
}
$swDate = exec("xxxx.$j");
if ($swDate==FALSE)
{$swDate='';}
else{
$start1 = strpos($swDate,"201");
$swDate = substr($swDate,$start1);
}
$insert = "insert into software (IP_SERVER,SW_NAME,SW_DATE) values ('$ip','$swName','$swDate')";
$res = mysql_query($insert,$con);
}
ผลออกมา มัน insert ลงแค่ Row แรกครับ แล้วหยุดเลย
แต่ถ้าผมเปลี่ยน เป็น insert $j ที่มีการ ++ มา
มันจะวนใส่ data ไปจนครบ $num ครับ IP_SERVER ก็ใส่ไปจนครบเช่นกัน
$insert = "insert into software (IP_SERVER,SW_NAME,SW_DATE) values ('$j','$swName','$swDate')";
ผมต้องแก้ตรงไหนครับ หรือ mysql ห้ามใส่ข้อมูล ซ้ำครับ แต่ผมต้องการให้ $ip ใส่ลงไป ซ้ำๆได้ ทุก row
ขอบคุณครับ
มือใหม่หัดเขียน
Tag : PHP, Windows
|
|
 |
 |
 |
 |
Date :
2014-01-28 15:54:19 |
By :
Daylight |
View :
699 |
Reply :
7 |
|
 |
 |
 |
 |
|
|
|
 |