This file contains 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
<script> | |
function generalShare(e, title, url) { | |
e.preventDefault(); | |
if (navigator.share) { | |
navigator | |
.share({ | |
title: title, | |
url: url |
This file contains 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 | |
$aciklama = esc($ilan['ilan_aciklama']); | |
$echo = mb_substr($aciklama, 0, 50, "UTF-8"); | |
$devam = "..."; | |
echo $echo.$devam; | |
?> |
This file contains 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 | |
$i = 0; | |
foreach($data as $key => $row){ | |
if(++$i > 2) break; | |
} | |
?> |
This file contains 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
---index.html--- | |
<div id="content"> | |
<h1>Page Title</h1> | |
<p>Page contents as below</p> | |
</div><div id="page"></div> | |
<button id="submit">Export to PDF</button> | |
-------------------------------------------- |
This file contains 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
</head> dan önce | |
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.js"></script> | |
<link | |
rel="stylesheet" | |
href="https://cdn.jsdelivr.net/npm/sweetalert2@11/dist/sweetalert2.min.css" | |
id="theme-styles" | |
/> | |
yükleyin. | |
This file contains 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
<button class="btn btn-default" onclick="window.print()"><i class="fas fa-print"></i> Print</button> |
This file contains 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 | |
/** | |
* Front to the WordPress application. This file doesn't do anything, but loads | |
* wp-blog-header.php which does and tells WordPress to load the theme. | |
* | |
* @package WordPress | |
*/ | |
/** | |
* Tells WordPress to load the WordPress theme and output it. |
This file contains 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
Cİ4 de yeni versiyonda verilen hatanın çözümü | |
güncel ci4 indirin. | |
app\Config girin | |
Kint.php açın. | |
İçindeki tüm kodları kopyalayıp eski dosyanın içine atıp kaydedin. |
This file contains 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
# Disable directory browsing | |
Options -Indexes | |
# ---------------------------------------------------------------------- | |
# Rewrite engine | |
# ---------------------------------------------------------------------- | |
# Turning on the rewrite engine is necessary for the following rules and features. | |
# FollowSymLinks must be enabled for this to work. | |
<IfModule mod_rewrite.c> |
This file contains 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 | |
// Check PHP version. | |
$minPhpVersion = '7.4'; // If you update this, don't forget to update `spark`. | |
if (version_compare(PHP_VERSION, $minPhpVersion, '<')) { | |
$message = sprintf( | |
'Your PHP version must be %s or higher to run CodeIgniter. Current version: %s', | |
$minPhpVersion, | |
PHP_VERSION | |
); |
NewerOlder