I have inherited a system running on PHP4.4.9, however I'm needing to do something that requires 5.0 or higher, at current we cannot upgrade as it's part of a "package" (Hornbill Supportworks) that will break various feature and functionality. What I have done is added the php 5+ stuff to my personal webspace for now. An example of the form I have is:
<form action="./ChangeStatusSubmit.php" method="post" name="main">
<input type="text" size="15" maxlength="43" name="GappsMailTextS">
<button type="submit">
Submit status changes
</button>
</form>
In the form action I'm also wanting it to post to http://www.externalurl/test.php, can anyone help with this? I've not found anything that works online as it requires "curl" or ajax (I've never used/seen ajax so I would have no idea how to put that in to the file! any help appreciated.