Skip to main content

Home/ Coders/ Group items tagged PHP5

Rss Feed Group items tagged

anonymous

http://www.unixodbc.org/doc/FreeTDS.html#Configuration - 0 views

  • <?php # connect to a DSN "MSSQLTest" with a user "cheech" and password "chong" $connect = odbc_connect("MSSQLTest", "cheech", "chong"); # query the users table for all fields $query = "SELECT * FROM users"; # perform the query $result = odbc_exec($connect, $query); # fetch the data from the database while(odbc_fetch_row($result)) { $field1 = odbc_result($result, 1); $field2 = odbc_result($result, 2); print("$field1 $field2\n"); } # close the connection odbc_close($connect); ?>
    • anonymous
       
      Die Erweiterung php5-odbc muss installiert sein, dann soll das, so die Aussage hier, automatisch funktionieren....
  •  
    Aus einer Virtuellen Maschine mit Sybase ODBC connecten...  hier steht die Grundanleitung.
anonymous

PHP: Backward incompatible changes - Manual - 0 views

  • All ereg functions were removed. PCRE is a recommended alternative.
ASLI BUGAKAPTAN INCE

Logikit::Framework - 0 views

  •  
    Logikit::Framework (LF for short) is an application development framework for PHP 5. The idea is to let people code much faster by providing a solid and easy-to-use substructure for common tasks. LF deals with most of the time-consuming everyday issues and lets you focus on the logic of your code.
1 - 3 of 3
Showing 20 items per page