Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact
Onur Taşkıran LogoOnur Taskiran's Personal BlogOnur Taskiran Blog
HomeAboutProjectsServicesContact
HomeAboutProjectsServicesContact

Posts tagged with "php"

Making Php Cache

Making Php Cache

20 April 20222 min readWeb Programming

Websites made without cache can cause speed problems. An event called cache is the caching process. This is very suitable for speeding up your php pages. We can make our php pages that need to be faster with easy and efficient codes I only serve two php pages. The first is t-cache.php and the other is b-cache.php you can give...

#PHP#Caching#Performance Optimization+3 more
Upload Images to Related Tables in php

Upload Images to Related Tables in php

16 March 20222 min readWeb Programming

Set file paths to yourself. I named my page with html codes meta.php, I named my page with php codes as metas. php Database connection is made with connection.php in the include folder meta.php is located inside the admin folder. Pictures are taken to the upload folder.

#PHP#File Uploads#Database Integration+3 more
How to Create Pagination With Php and Mysql

How to Create Pagination With Php and Mysql

16 February 20223 min readWeb Programming

Pagination breaks down large lists. So the page view is good and loads faster. Pagination is used in almost all web projects. Here is a simple example for you. We will make our application using Php, Mysql, Jquery and Bootstrap technologies. First, we need to create database...

#PHP#MySQL#Pagination+3 more
Making Simple Captcha with Symfony

Making Simple Captcha with Symfony

16 January 20222 min readWeb Programming

With captcha, we check whether the data is entered by users, and we prevent many attacks such as XSS attack or SQL injection. Captcha making with Symfony is simple, also very paritic and safe to use I'll explain step by step how it's done. The number encrypted with md5 will be...

#Symfony#Captcha#Web Security+4 more
Symfony Database Operations

Symfony Database Operations

16 January 20221 min readWeb Programming

There are many methods of capturing data. I'll convey what I know. For example we created a table called tal_news When writing the table name in Symfony, we write the first letters uppercase, make the table name TalNews (Capital letters must come after the first letter and underscore) The simplest way is to pull all the data...

#Symfony#PHP#Database Operations+3 more