|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-07-03 07:42 UTC] derick@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 20:00:01 2025 UTC |
PHP caused a stack fault in module PHP4TS.DLL at 0177:100a13c6. Was coding a Mail script - Was trying to call the same function within a function (to draw it out as what to do with the vars on the page). Overview: Variables Coming in -> Mail the Data || No Variables -> Draw the form Running PHPTriad 2.11 -> PHP 4.0.5 & Apache(win32) 1.3.14 <? // Filename : blah.php function snail () { if (isset($sub_mail) || isset($body_mail) || isset($name_mail) || isset($from_mail)) { echo "Your Mail has Been Sent. Thank you for your response."; } else { echo "<FORM METHOD='POST' ACTION='".snail()."'>"; echo "Email: <INPUT TYPE='text' NAME='from_mail'>"; echo "<INPUT type='submit'>"; echo "</FORM>"; } } ?> <? require ("blah.php"); ?> <HTML> <BODY topmargin=1 leftmargin=3 BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#663366" ALINK VLINK> <?= snail (); ?> </BODY> </HTML>