Learn how to build this over here: http://piccalil.li/tutorial/build-a-fancy-hover-animation/
A Pen by Piccalilli on CodePen.
<a href="https://front.codes/" class="logo" target="_blank"> | |
<img src="https://assets.codepen.io/1462889/fcb.png" alt=""> | |
</a> | |
<div class="section over-hide"> | |
<div class="container"> | |
<div class="row full-height justify-content-center"> | |
<div class="col-12 text-center align-self-center py-5"> | |
<div class="section text-center py-5 py-md-0"> |
Learn how to build this over here: http://piccalil.li/tutorial/build-a-fancy-hover-animation/
A Pen by Piccalilli on CodePen.
$ch = curl_init($post_url); | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_POST, 1); | |
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query(array('data1'=>'val','data2'=>'val2'))); | |
$data_str = curl_exec($ch); | |
curl_close($ch); | |
file_put_contents($path_to_xml_data,$data_str); |