On 2020-10-26, Jeremy Nicoll <jn.ml.dbn...@letterboxes.org> wrote: > On Mon, 26 Oct 2020, at 13:49, Curt wrote: >> On 2020-10-26, Greg Wooledge <wool...@eeg.ccf.org> wrote: > >> > But what would the form's Submit action be? > >> <h2>HTML Forms</h2> >> >> <form action="/action_page.php"> > > ... which works fine when someone is browsing a page served by some > website's own server... as that partial URL points to a php file which is > part of the website concerned.
<form action="[example_url]" method="get"> <!-- Form content --> </form> ? > But the point that Greg is making (I assume) is that if you view an html file > that was part of an email, in a browser, that "/action_page...." will not > point > anywhere sensible unless it contains a full URL. > --