|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2004-02-04 19:15 UTC] sniper@php.net
[2004-02-05 09:54 UTC] martin dot cermak at proit dot cz
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Tue Mar 24 20:00:01 2026 UTC |
Description: ------------ Hello,: when opening some DBF file on linux OS,I got finish session in the dbase_get_record_with_names() func. It just disconnect the HTTP session when encounter this func. Database must contain MEMO fields. Example script: <META http-equiv=Content-Type content="text/html; charset=cp852"> <? if ( !$file_dbf = dbase_open("XKNFAVYD.dbf",0) ) { echo "Cannot open database\n"; exit; } $pocet=dbase_numrecords($file_dbf); for($i=1;$i<=$pocet;$i++) { $record=dbase_get_record_with_names($file_dbf,$i); echo "<pre>";print_r($record);echo "</pre>"; break; } dbase_close($file_dbf); ?>