milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Parametrized query

Details
Written by: Stanko Milosev
Category: PHP
Published: 27 August 2008
Last Updated: 30 November -0001
Hits: 5375

Whenever is possible use parameterized queries in MS driver for PHP for MS SQL, to reduce risko of SQL injection attack.Taken from here.

Using of parametrized queries is simple, you can use example from here, for varchar types everything is same (you don't need quotes, as I thought) .

Saving file.

Details
Written by: Stanko Milosev
Category: PHP
Published: 18 August 2008
Last Updated: 18 July 2011
Hits: 5626

There is no such thing as TStringList

So, note to my self, for saving files in PHP (good for geting and analyzing queries) :

$fp = fopen('c:data.txt', 'w');
fwrite($fp, $MySQL);
fclose($fp);

Taken from here.

Check if anything is assigned to $_GET

Details
Written by: Stanko Milosev
Category: PHP
Published: 06 August 2008
Last Updated: 18 July 2011
Hits: 6094

So, this is my first post

How to check is anything passed to $_GET or $_POST variables?

Easily:

if (!isset($_GET['download'])) {

Example:

<?php
if (!isset($_GET['download'])) {
echo ('Error download is not assigned');
} else {
echo ($_GET['download']);
}
?>

Taken from here.

Installing the GitHub Copilot CLI on Windows 11

Details
Written by: Stanko Milosev
Category: Windows
Published: 18 January 2026
Last Updated: 18 January 2026
Hits: 92
First, I executed the following command:
winget install GitHub.Copilot
  1. Installing the MarkItDown Python Tool for Converting Files to Markdown
  2. Step-by-Step Guide to Installing Python on Windows 11
  3. Step-by-Step Guide: Installing OpenWebUI on Windows 11 with Docker
  4. TestComplete

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 105 of 168

  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109