codeigniter 3 example create helper
Example 1: curlopt_postfields php example
<?php
$postRequest = array(
'firstFieldData' => 'foo',
'secondFieldData' => 'bar'
);
$cURLConnection = curl_init('http://hostname.tld/api');
curl_setopt($cURLConnection, CURLOPT_POSTFIELDS, $postRequest);
curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);
$apiResponse = curl_exec($cURLConnection);
curl_close($cURLConnection);
$jsonArrayResponse - json_decode($apiResponse);
Example 2: codeigniter 4 login example
<html>
<head></head>
<body>
<div class="wrap">
<?php echo $content; ?>
</div>
</body>
</html>