Thanks David.
I did test it and it works fine with http. Not exactly sure what you are looking at because I haven't posted accurate url's, I just through the faux shared cert address in there as an example.
The code if you care which couldn't be anymore simple is as follows:
form.php (plain)
HTML Code:
<form method="post" action="process.php">
<input type="hidden" name="field" value="field value" />
<button type="submit">Save</button>
</form>
form.php (with faux shared cert)
HTML Code:
<form method="post" action="https://echo.gendns20.com/~mydomain/process.php">
<input type="hidden" name="field" value="field value" />
<button type="submit">Save</button>
</form>
process.php
PHP Code:
<pre>
<?php print_r($_POST); ?>
</pre>