XML problem with web form

https://validator.w3.org/nu/#textarea

You can copy and paste the HTML into the validator to check for errors.

with below code i am able to take input and able to display them but how can we make it enable to to add items in one particular section(where we can
add additional streams) and give us the ability to remove streams as well.?

below is the latest code for adding fields and displaying them:-

l2.php

<!DOCTYPE html>
<html>
<head>
<title>Form</title>

</head>

<body>

<h1>The input name attribute</h1>



<form action="action_page.php" method="get">
  <label for="URL">A Media URL:</label>
  <input type="text" id="URL" name="URL"><br><br>
  <label for="Image">An Image:</label>
  <input type="text" id="Image" name="Image"><br><br>
  <label for="Title">Title Name:</label>
  <input type="text" id="Title" name="Title"><br><br>
  <input type="submit" value="Submit">

</form>

</body>
</html>

action_page.php

<!DOCTYPE html>
<html>

<body>

 

Your URL is:   <?php echo $_GET["URL"]; ?><br>

Your Image is: <?php echo $_GET["Image"]; ?> <br>

Your Title is: <?php echo $_GET["Title"]; ?>

</body>
</html>

Thanks…

Sorry, my typo. I meant to say “POST”.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.