کد:$ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://www.faranevis.com/api/currency/'); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $data = curl_exec($ch); curl_close($ch); $data = json_decode($data); $tr = null; foreach($data as $k=>$v) { if(isset($v->name)) { @$tr .= "<tr><td>{$k}</td><td>{$v->قیمت}</td><td>{$v->بیشترین}</td><td> {$v->کمترین}</td><td>{$v->زمان}</td></tr>"; } } $output = '<table> <tr> <th>نام</th> <th>قیمت</th> <th>بیشترین</th> <th>کمترین</th> <th>زمان</th> </tr> '.$tr.' <table>'; echo $output;