Hello everyone,
Let me start my stating that I am a newbie to all of this. I am working on the webcast service for my church congregation. We are using a platform called churchonline.org as our access point. The one negative I have to say about the site is that it does not let me keep attendance through it. It will let me put up "slides" in different frames on the site. The slides can me in HTML format. But I have no control over the frames of the site. The slides post where the slides post. I also can not put any files on the site other then in specific predetermined areas for like pics and what not. Having said all that back ground here is my issue.
I want to create a HTML slide that acts as a form so that people can submit their attendance. The form slide/file I created looks like this.
<form action="contact.php" method="post">
Your name
<input type="text" name="cf_name">
Select Total number of people viewing at your location:
<select size="1" name="cf_drop_down">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>10</option>
<option>10+</option>
<option>javascript</option>
</select>
<input type="submit" value="Send">
<input type="reset" value="Clear">
</form>
The problem with this is that I have no place to up load the php file to actually generate an email back to me with the entered data. Is there a way to place a script to email the info back to me directly in the same HTML file as the form so that it is totally self contained not relying on another file outside the original HTML one. If not, is there another way to do about doing this relatively simply. Thanks in advance for your help
medman



Reply With Quote