mirror of
https://github.com/php/presentations.git
synced 2026-03-24 15:42:33 +01:00
11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
function check_if_exists($cc)
|
|
{
|
|
$result = sqlite_unbuffered_query(
|
|
"SELECT id FROM country_data WHERE cc_code_2='{$cc}'",
|
|
sqlite_r
|
|
);
|
|
|
|
return sqlite_fetch_single($result);
|
|
}
|
|
?>
|