I made this form and I need it to read the data and write the data to a table and its not working can someone please help me and show me what I have wrong so I can fix it
heres the html form I left off the doc type so it dont take up that much room
<form>
<h1>Telephone Directory</h1>
<table align='Left'>
<tr>
<td>LastName</td>
<td><input name='LastName' /></td>
</tr>
<tr>
<td>FirstName</td>
<td><input name='FirstName' /></td>
</tr>
<tr>
<td>StreetAddress</td>
<td><input name='StreetAddress' /></td>
</tr>
<tr>
<td>City</td>
<td><input name='City' /></td>
</tr>
<tr>
<td>State</td>
<td><input name='State' /></td>
</tr>
<tr>
<td>Zip</td>
<td><input name='Zip' /></td>
</tr>
<tr>
<td>AreaCode</td>
<td><input name='AreaCode' /></td>
</tr>
<tr>
<td>PhoneNumber</td>
<td><input name='PhoneNumber' /></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Submit" /></td>
<td><a href="Telephonewrite.php">ReadFile</a></td>
</tr>
</table>
</form>
</body>
</html>
php.file to read
<body>
<h1>Telephone Directory</h1>
<?php
$fileHandle=fopen("read.txt","r");
readfile("read.txt");
$record=fgets($fileHandle);
echo("<table><tr><td>FirstName</td><td>LastName</td><td>StreetAddress</td><td>City</td><td>State</td>
<td>Zip</td><td>AreaCode</td><td>PhoneNumber</td></tr>");
while(!feof($fileHandle))
{
$myArray=explode("|",$record);
echo "<tr><td>$myArray[0]</td><td>$myArray[1]</td></tr>";
$record =fgets($fileHandle);
$record =fgets($LastName);
$record =fgets($FirstName);
$record =fgets($StreetAddress);
$record =fgets($City);
$record =fgets($State);
$record =fgets($Zip);
$record =fgets($AreaCode);
$record =fgets($PhoneNumber);
}
echo "</table>"
?>
</body>
</html>
the php file to write
<body>
<h1>Telephone Directory</h1>
<hr />
<?php
if(isset($_GET['PhoneNumber']) && isset($_GET['LastName'])) {
$LastName = $_GET['LastName'];
$FirstName = $_GET['FirstName'];
$StreetAdress = $_GET['StreetAddress'];
$City = $_GET['City'];
$State = $_GET['State'];
$Zip = $_GET['Zip'];
$AreaCode = $_GET['AreaCode'];
$PhoneNumber = $_GET['PhoneNumber'];
$record=$LastName. "|";
$record=$FirstName. "|";
$record .="rn";
$fileHandle = fopen("read.txt","a");
readfile("read.txt");
if(fwrite($read, $record)>0)
echo "<p>your entry was successfully added to the file</p>";
else
echo "<p>No data was written, please return to the form</p>";
fclose($fileHandle);
}
?>
<a href="Telephone.html">Form</a>
</body>
</html>
Cursor statement failed with errors
Following statement failed with the errors.
Something like an INI editor or a DelimitedText-Editor
Hi all,Am very, very, very new to PHP and not sure if I should be posting this to a Javascript or PHP forum so I posed the question on both FORUM.Basically, I am looking for something like an INI
Giving the below syntax error
Dear Experts,
Search with relational database
Hey,I have quite a complicated (for me anyway ) relational database for an apartments system I am developing.Keith (kickstart) was very helpful assisting me in creating the relationships and here is
mail() problem
Hi Guys,I've set up a contact email form. It sends the information fine, but it sends it to the junk folder.If I just use this command:$headers = "MIME-Version: 1.0 \n";It will send it to
mail() says sent but no email received
My code is quite simple:Code: <?php$to = "Ty44ler@yahoo.com";$subject = "Test mail";$message = "Hey, I just wanted to see if the script worked.";$from =
Remove directories not empty
hi,i have an array that contains some names (1,4,6,56...). Every integer is a name of a folder.I must to delete only the folders in array, i use this code:Code: $all_folders = array();while ($row =
Trigger tag in aspx is not coming
hi all ,iam new to ajax, iam using file upload inside the update pannel but right now i want to use trigger tag but it is not coming, for that whether i want to install anything like toolkit ,please
INSERT data problem!
After having an string with apostrophes ', double quotes " or any other special characters, successfully escaped through one of themany php functions availables to escape, what other
PHP and MySQL on intranet?
Is it possible to use both these on an intranet network?