This question already has an answer here:
I have php code on my result page and I added some else to my php script, but i got error PHP Parse erro syntax error, unexpected else T_ELSE in / line 122
$domain_only = preg_split('/\./', $domain);
foreach($ext as $item){
$domain = $domain_only[0].$item;
if ( checkdnsrr($domain, 'ANY') ) {
$response = '<tr id="com">
<td>
<i class="fa fa-times text-color-error"></i>
</td>
<td>
<h4 class="text-color-error">'.$domain.'</h4>
</td>
<td class="text-color-error">Rp. 125.000</td>
<td>
<a class="button button-primary" href="https://www.indoip.com/whois/'.$domain.'" target="_blank" style="background: #cd3100">
<i class="fa fa-eye icon-left"></i>Whois</a>
</td>
</tr>';
}
line 122 else
{
// =================================================
$response = '<tr id="web.id">
<td>
<i class="fa fa-check text-color-success"></i>
</td>
<td>
<h4>'.$domain.'</h4>
</td>
<td class="highlight">Rp. 55.000</td>
<td>
</td>
</tr>';
}
else
{
// =================================================
$response = '<tr id="net">
<td>
<i class="fa fa-check text-color-success"></i>
</td>
<td>
<h4>'.$domain.'</h4>
</td>
<td class="highlight">Rp. 93.000</td>
<td>
</td>
</tr>';
}
else
{
// =================================================
$response = '<tr id="co.id">
<td>
<i class="fa fa-check text-color-success"></i>
</td>
<td>
<h4>'.$domain.'</h4>
</td>
<td class="highlight">Rp. 80.000</td>
<td>
</td>
</tr>';
}
else
{
// =================================================
$response = '<tr id="net.id">
<td>
<i class="fa fa-check text-color-success"></i>
</td>
<td>
<h4>'.$domain.'</h4>
</td>
<td class="highlight">Rp. 65.000</td>
<td>
</td>
</tr>';
}
echo $response;
$i++;
}
?>
if you only use 2 else the script runs smoothly but if I add an error like the one above.
How i can resolve this error, is there code missing from my code above?
all help is greatly appreciated
</div>