mirror of
https://github.com/php/presentations.git
synced 2026-03-29 19:12:16 +02:00
8 lines
185 B
PHP
8 lines
185 B
PHP
<?php
|
|
function check_if_exists($cc)
|
|
{
|
|
$result = safe_query("SELECT id FROM country_data WHERE cc_code_2='{$cc}'");
|
|
|
|
return sqlite_fetch_array($result, SQLITE_NUM) ? TRUE : FALSE;
|
|
}
|
|
?>
|