Halil Han BADEM
<?php
$servername = "localhost";
$username = "***";
$password = "***";
$dbname = "**";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error)
{
die("Connection failed: " . $conn->connect_error);
}
$sql = "SELECT * FROM atanmis";
$responce = $conn->query($sql);
$result['atanmis'] = array();
if (mysqli_num_rows($responce) > 0)
{
while($row=mysqli_fetch_assoc($responce))
{
$index['id']= $row['id'];
$index['is_tanimi']= $row['is_tanimi'];
$index['user_name']= $row['user_name'];
$index['user_adres']= $row['user_adres'];
$index['user_tel']= $row['user_tel'];
$index['user_not']= $row['user_not'];
$index['tarih']= $row['tarih'];
$index['ucret']= $row['ucret'];
$index['personel']= $row['personel'];
array_push($result['atanmis'], $index);
}
}
$result["success"]="1";
echo json_encode($result,JSON_UNESCAPED_UNICODE);
mysqli_close($conn);
?>
sorunu çözdüm hocam ihtiyacı olan buradan kullanabilir boş array çekiyormuşum bazen takılınca ufak şeyleri göremiyo insan 🙂 teşekkürler desteğiniz için.