“PHP Read SQL” Code-Antworten

Abfrage SQL in PHP

$sql = "SELECT id, firstname, lastname FROM MyGuests";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["id"]. " - Name: " . $row["firstname"]. " " . $row["lastname"]. "<br>";
    }
} else {
    echo "0 results";
}
$conn->close();
Terrible Toucan

PHP Read SQL

$qry = "SELECT * FROM database.table;";		//create Query
$result = $db -> query($qry);				//send and get result

$resultArray = $result->fetchAll();			//fetch result
  
echo $resultArray;			
Real Reindeer

PHP erhalten SQL -Abfrage

echo $select->__toString();
Prasanti Prusty

PHP -Ergebnis SQL Server

//on sql server
public function get_data_from($id){
  $request = "SELECT * FROM yourTable WHERE id = ?";

  //preparing the request
  $stmt = $this->dbh->prepare($request);

  //executing the request
  $stmt->execute( array($id)  );

  //fetching the result of the request
  $result = $stmt->fetchAll();

  return $result;
}
Sorann

Ähnliche Antworten wie “PHP Read SQL”

Fragen ähnlich wie “PHP Read SQL”

Weitere verwandte Antworten zu “PHP Read SQL” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen