I'm new to php development and i just heard of curl. i have this data i post in a form action
<form id="new_member_sms" name="new_member_sms" method="post" action="http://myserver.com/app_api.php?view=send_sms&&user=username&&pass=password&&message=hello+this+message+is+dynamic+from+server&&sender_id=BlaySoft&&to=<?php echo $row_rs_sms['phone_no']; ?>&&key=4">
</form>
I want to know if there's a way i can wrap this post message "http://myserver.com/app_api.php?view=send_sms&&user=username&&pass=password&&message=hello+this+message+is+dynamic+from+server&&sender_id=BlaySoft&&to=<?php echo $row_rs_sms['phone_no']; ?>&&key=4"
in a php curl and send it to the server