|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-01-08 15:36 UTC] cynic@php.net
[2001-02-20 07:59 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 08:00:01 2025 UTC |
ODBC functions generate GPE whenver executed within a function (not in the main body) function connect($d,$u,$p) { return odbc_connect($d,$u,$p); } function exec($c,$q) { return odbc_do($c,$q); } $c=connect("aa","bb","cc"); exec($c,"select * from trash");