Skip to content

Forum

How to connect PHP ...
 
Notifications
Clear all

How to connect PHP page to HTML page?

1 Posts
1 Users
0 Likes
141 Views
(@junaid)
New Member
Joined: 7 months ago
Posts: 2
Topic starter  
    include("connection.php")

<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HTML form</title>
</head>
 
<body>
    <form>
        <!-- this is for input values -->
    <table border="0" bgcolor="blue" align="center" cellspacing="20">
        <input type="text" name="fname" placeholder='FirstName'><br><br>
        <input type="text" name="lname" placeholder='LastName'><br><br>

        <input type="email" name="email" placeholder='Email'><br><br>
        <input type="int" name="pass" placeholder='Password'><br><br>
        <input type="int" name="conpass" placeholder='ConfirmPassword'><br><br>

        <input type="submit" id="sub">
    </table>
    </form>

</body>
</html>

I have added the above code but my connection page is not running.


   
Quote
Topic Tags
Share: