Hello,
The following question is probably a horrible betreyal of by ineptness.
I would like to find a way to add to an existing XML file using the user-inputted information in HTML text fields and submitted as a form.
The text information has to be incorporated into the xml during the process also.
e.g:
Using the following html to add a new item to an RSS feed:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head>
<title>RSS Feed Updater.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>The Blocker Refuge RSS Feed. </p>
<form action="" method="post" name="form1" id="form1" onsubmit="">
<p>Name:
<input name="Name" type="text" size="57" />
</p>
<p>Job:
<input name="Job" type="text" size="50" />
</p>
<p>Homepage:
<input name="homepage" type="text" size="75" />
</p>
<input type="submit" name="Submit" value="Submit" />
</form>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>
The string [name << " - " << occupation] would form the title and the homepage string the link.
Basically I'm trying to make an open RSS feed.
Any suggestions?
The following question is probably a horrible betreyal of by ineptness.
I would like to find a way to add to an existing XML file using the user-inputted information in HTML text fields and submitted as a form.
The text information has to be incorporated into the xml during the process also.
e.g:
Using the following html to add a new item to an RSS feed:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "<html xmlns="<head>
<title>RSS Feed Updater.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<p>The Blocker Refuge RSS Feed. </p>
<form action="" method="post" name="form1" id="form1" onsubmit="">
<p>Name:
<input name="Name" type="text" size="57" />
</p>
<p>Job:
<input name="Job" type="text" size="50" />
</p>
<p>Homepage:
<input name="homepage" type="text" size="75" />
</p>
<input type="submit" name="Submit" value="Submit" />
</form>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>
The string [name << " - " << occupation] would form the title and the homepage string the link.
Basically I'm trying to make an open RSS feed.
Any suggestions?