This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Tüm dillerde kullanılabilir.. | |
belirli bir alan için yazılmış fonksiyonları grouplandırma için fonksiyon. | |
benzer fonksiyon isimlerini group ismine göre ayırma, akılda kalıcı isimlendir için bir öneri... | |
file.open(test.txt); | |
sql.open(test.sql); | |
.... vb. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!DOCTYPE html(lang:"en"){ | |
head{ | |
meta{ | |
browset: "type=text/html, charset=utf-8, ie=edge, chrome=1, http-equiv=x-ua-compatible", | |
viewport: "width=device-width, initial-scale=1.0, user-scalable=no", | |
description: "XAMPP is an easy to install Apache distribution containing MariaDB, PHP and Perl.", | |
keywords: "xampp, apache, php, perl, mariadb, open source distribution" | |
} | |
title("Welcome to XAMPP") | |
link type:text/css, rel:stylesheet{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!function (d, e, f, g) { | |
function i(a) { | |
e.push.apply(this, a && a.nodeType ? [a] : '' + a === a ? d.querySelectorAll(a) : g) | |
} | |
S = function(a) { | |
return /^f/.test(typeof a) ? /c/.test(d.readyState) ? a() : S(d).on('DOMContentLoaded', a) : new i(a) | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
####-----------------------------------------------------------------------#### | |
# myfsql.php | |
# 12.07.2023 | |
# ver: 0.1.1 | |
# rev: 0.0.0 | |
# D'ssConnecTed | |
# cemden@gmail.com | |
# Referans: https://phpdelusions.net/mysqli | |
####-----------------------------------------------------------------------#### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
####---------------------------------------------------------------#### | |
# language.php | |
# 30.05.2023 | |
# ver: 1.0 | |
# rev: 0 | |
# D'ssConnecTed | |
# | |
####---------------------------------------------------------------#### |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
function Search( $ara ){ | |
$result = mysqli_query("SELECT * FROM sites WHERE MATCH(sitename,siteabout) AGAINST('$ara' IN BOOLEAN MODE);"); | |
$context['ara'] = array(); | |
while ($row = mysqli_fetch_assoc($result)) | |
{ | |
$context['ara'][] = array( | |
'id' => $row['id'], | |
'name' => $row['name'], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function is_bot() | |
{ | |
/* This function will check whether the visitor is a search engine robot */ | |
$botlist = array("Teoma", "alexa", "froogle", "Gigabot", "inktomi", | |
"looksmart", "URL_Spider_SQL", "Firefly", "NationalDirectory", | |
"Ask Jeeves", "TECNOSEEK", "InfoSeek", "WebFindBot", "girafabot", | |
"crawler", "www.galaxy.com", "Googlebot", "Scooter", "Slurp", | |
"msnbot", "appie", "FAST", "WebBug", "Spade", "ZyBorg", "rabaz", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?Php | |
// Ne kadar Zaman | |
$txt['kdakika'] = ' Dakika '; | |
$txt['ksaat'] = ' Saat '; | |
$txt['kgun'] = ' Gün '; | |
$txt['khafta'] = ' Hafta '; | |
$txt['kay'] = ' Ay '; | |
$txt['kyil'] = ' Yıl '; | |
$txt['biraz'] ='Biraz '; | |
$txt['once'] = 'önce '; |