mirror of
https://github.com/php/presentations.git
synced 2026-03-24 23:52:18 +01: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;
|
|
}
|
|
?>
|