döndükce yeni kayıt olarak eklersin
$sql = "SELECT * FROM tabloadi where w_title = 'abc'";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
while($row = mysqli_fetch_assoc($result)) {
$sql2="insert into tabloadi (w_id,w_title,w_www) values (0,'new',$row['w_www'])";
mysqli_query($conn, $sql2);
}
mysqli_close($conn);
}