G
Guest
Guest
I have a script that worked beautifully until I was informed that the server I was hosted on went from PHP3 to PHP4. Now, I get an error message that tells me my variables are undefined in line 7. Here's that part of the script:
<html>
<head>
<title>sprocess.php</title>
</head>
<body bgcolor="white" link="blue" alink="yellow" vlink="blue">
<?php $fp=fopen("database.txt", "a");
fwrite($fp,"$lname\t$fname\t$email\t$org\t$gro..and so on...
Is this in fact due to some change in PHP versions?
<html>
<head>
<title>sprocess.php</title>
</head>
<body bgcolor="white" link="blue" alink="yellow" vlink="blue">
<?php $fp=fopen("database.txt", "a");
fwrite($fp,"$lname\t$fname\t$email\t$org\t$gro..and so on...
Is this in fact due to some change in PHP versions?