|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-01-16 07:19 UTC] sander@php.net
[2002-03-14 00:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 06:00:02 2025 UTC |
i am running latest "stable" 1.3 apache on my windows 2000 machine here. When i execute the following code (both $f_user and $f_pass are populated) <?php require_once("global.php"); if (isset ($f_user) && isset ($f_pass)) { /* so the user [form] needs to be logged in... */ $sql = "SELECT * FROM login WHERE user = '" . addslashes($f_user) . "'"; $userchk = db_connect($sql, "Y"); if ( isset($userchk) && ($userchk != "")) { if ( $userchk->pass = $f_pass ) { $icauser = "true"; session_register("icauser"); } } } ?> it causes apache.exe to crash. when restarting the service, i get the following message 3 times: titlebar: "apache.exe Entry Point Not Found" message: "The procedure entry point wrong_param_count could not be located in the dynamic link library php4ts.dll." I will get/give more info as requested.