Click here to Skip to main content
15,892,517 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Good morningto all in my project i want to get and display data in html from mysql using php my html code is below
XML
<html>
<body>
<form action="getdata.php" method="post">
Name:<input type="text" name="fname"/>
Age:<input type="text" name="age"/>
<input type="submit"/>
</form>

</body>
</html>

but the above code give the following error

The HTTP verb POST used to access path '/WebSite7/getdata.php' is not allowed
but i call the aspx page on action it is go to aspx page but not go to php and html page.
My php code is
XML
<?php
$con=mysqli_connect("localhost:8080","root","","Test");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$result = mysqli_query($con,"SELECT * FROM Persons");

echo "<table border='1'>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>";

while($row = mysqli_fetch_array($result))
  {
  echo "<tr>";
  echo "<td>" . $row['FirstName'] . "</td>";
  echo "<td>" . $row['LastName'] . "</td>";
  echo "</tr>";
  }
echo "</table>";

mysqli_close($con);
?>


Please help me any one
thanks and regards
By
Meganathan
Posted
Comments
Killzone DeathMan 17-May-13 12:23pm    
One question: MySql is on port 8080? Isn't it on 3306?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900