|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2002-04-29 18:27 UTC] shelley at databyte dot com
  [2002-07-07 12:39 UTC] derick@php.net
  [2002-07-07 13:15 UTC] sniper@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 04:00:01 2025 UTC | 
Ref Value not being passed back. I've created this sample and it has the same results that I was having in my PHP page. I couldn't send the PHP page that I'm actually having the problem on because it doesn't DB calls etc. I also, have had this same problem on Com function that pass arguments to a vb dll. I saw on the bug search, that you other people have had this problem with the vb6 dll and that it was fixed. However, I'm having the same problem on Windows 2000 Server with Version 4.1.2 and re-download PHP in the last few weeks with all the patches. test.php <html> <head> <meta name="GENERATOR" content="Workorder Databyte"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http_equiv="cache-control" content="no-cache"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> </head> <body> <? include("C:/Inetpub/wwwroot/PHP/PHPFunctions/rtest.inc"); $t=true; $c='VarC'; mytest($t,$c); print("<p> ".$t); print(" ".$c); ?> </body> </html> rtest.inc <? function mytest($t,$c) { $c='MyRef'; $t=false; return; } ?> Output results after running. X-Powered-By: PHP/4.1.0 Content-type: text/html <html> <head> <meta name="GENERATOR" content="Workorder Databyte"> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="0"> <meta http_equiv="cache-control" content="no-cache"> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> </head> <body> <p> 1 VarC Thanks, Shelley