Mysql başarısız olursa php script devam

0 Cevap php

Ben üzerinde çalışıyorum bir uygulama için bu kodu vardır:

    <?php
header("Content-type: text/xml");
//Gather data and prepare query
$thequery = urlencode($_GET['s']);
$yhost = 'http://boss.yahooapis.com';
$apikey = 'xxxxxxxxxxxxxxxxxxxxxxxx';
$url = $yhost.'/ysearch/news/v1/'.$thequery.'?appid='.$apikey.'&format=xml';
//Get the results
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);
$data = str_replace( array('<abstract>', '</abstract>'), array('<description>', '</description>'), $data);
$results = new SimpleXmlElement($data, LIBXML_NOCDATA);
//echo the results
echo $results->asXML();
?>

Ben bu çizgi var burada: mysql bit herhangi bir nedenle başarısız eğer öyleyse nasıl ben, emin olabilirsiniz $thequery = urlencode($_GET['s']); Ben bir DB için bu oturum istiyorum ama açıkçası çok önemli bir XML Çıktılanan alır XML hala outputted olur? Ya ben bu overcomplicating am?

0 Cevap