Frage : PHP + MSSQL

Ich erlerne PHP und lasse es gründen, und morgens using Mitgliedstaat SQL 2005, möchte ich den angebrachten Code verwenden, aber verwende ihn anschließend an Mitgliedstaat SQL, beim den gleichen Ausgang noch erhalten, könnte Sie die notwendigen Justagen zum Code vornehmen, also kann ich ihn verwenden, den Weise ich langsam beginnen kann, um zu verstehen wie PHP works.

thanks
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
6:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
class AgentService { 
  var $username = „Benutzer“; 
  var $password = „Durchlauf“; 
  var $server = „localhost“; 
  var $port = „1433“; 
  var $databasename = „testdrive_db“; 
  var $tablename = „Angestellte“; 
  
  var $connection; 
  allgemeines Funktion __construct () { 
    $this->connection = mysqli_connect ( 
                       $this->server,  
                       $this->username,  
                       $this->password, 
                       $this->databasename, 
                       $this->port 
                       ); 
    
    $this->throwExceptionOnError ($this->connection); 
  } 

  allgemeine Funktion getEmployees () {
     $stmt = mysqli_prepare ($this->connection,
          „AUSERWÄHLT
              employees.id,
              employees.firstname,
              employees.lastname,
              employees.title,
              employees.departmentid,
              employees.officephone,
              employees.cellphone,
              employees.email,
              employees.street,
              employees.city,
              employees.state,
              employees.zipcode,
              employees.office,
              employees.photofile
           Von den Angestellten ");     
         
      $this->throwExceptionOnError ();

      mysqli_stmt_execute ($stmt);
      $this->throwExceptionOnError ();

      $rows = Reihe ();
      mysqli_stmt_bind_result ($stmt, $row->id, $row->firstname,
                    $row->lastname, $row->title, $row->departmentid,
                    $row->officephone, $row->cellphone, $row->email,  
                    $row->street, $row->city, $row->state, 
                    $row->zipcode, $row->office, $row->photofile);

      während (mysqli_stmt_fetch ($stmt)) {
          $rows [] = $row;
          $row = neue stdClass ();
          mysqli_stmt_bind_result ($stmt, $row->id, $row->firstname,
                    $row->lastname, $row->title, $row->departmentid,
                    $row->officephone, $row->cellphone, $row->email,  
                    $row->street, $row->city, $row->state, 
                    $row->zipcode, $row->office, $row->photofile);
      }

      mysqli_stmt_free_result ($stmt);
      mysqli_close ($this->connection);

      Rückhol$rows;
  }

Antwort : PHP + MSSQL


Mssql_connect anstelle vom mysqli_connect benutzen

http://www.php.net/manual/en/function.mssql-pconnect.php

Hoffen, dass dieses hilft
Weitere Lösungen  
 
programming4us programming4us