Slovníček¶
Z Wikipedie, otevřené encyklopedie
- .htaccess
the default name of Apache’s directory-level configuration file.
Viz také
- ACL
- Access Control List
- Blowfish
a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier.
- Prohlížeč
a software application that enables a user to display and interact with text, images, and other information typically located on a web page at a website on the World Wide Web.
Viz také
- Komprese bzip2
a free software/open-source data compression algorithm and program developed by Julian Seward.
Viz také
- CGI
Common Gateway Interface is an important World Wide Web technology that enables a client web browser to request data from a program executed on the web server.
- Changelog
seznam změn provedených na projektu.
Viz také
- Klient
a computer system that accesses a (remote) service on another computer by some kind of network.
- Sloupec
a set of data values of a particularly simple type, one for each row of the table.
a packet of information sent by a server to a World Wide Web browser and then sent back by the browser each time it accesses that server.
Viz také
- CSV
Comma-separated values
- DB
- viz Database
- Databáze
an organized collection of data.
Viz také
- Úložiště
- viz Storage Engines
- Rozšíření PHP
PHP modul který rozšiřuje funkcionalitu PHP.
- FAQ
Frequently Asked Questions is a list of commonly asked question and their answers.
Viz také
- Pole
one part of divided data/columns.
- Cizí klíč
a column or group of columns in a database row that points to a key column or group of columns forming a key of another database row in some (usually different) table.
Viz také
- GD
Graphics Library by Thomas Boutell and others for dynamically manipulating images.
- GD2
- viz GD
- GZip
GZip is short for GNU zip, a GNU free software file compression program.
Viz také
- Počítač
any machine connected to a computer network, a node that has a hostname.
Viz také
- hostname
the unique name by which a network-attached device is known on a network.
Viz také
- HTTP
Hypertext Transfer Protocol is the primary method used to transfer or convey information on the World Wide Web.
- HTTPS
a HTTP-connection with additional security measures.
Viz také
- IEC
- International Electrotechnical Commission
- IIS
Internet Information Services is a set of internet-based services for servers using Microsoft Windows.
- Index
a feature that allows quick access to the rows in a table.
Viz také
- IP
„Internet Protocol“ is a data-oriented protocol used by source and destination hosts for communicating data across a packet-switched internetwork.
- IP adresa
a unique number that devices use in order to identify and communicate with each other on a network utilizing the Internet Protocol standard.
Viz také
- IPv6
IPv6 (Internet Protocol version 6) is the latest revision of the Internet Protocol (IP), designed to deal with the long-anticipated problem of its predecessor IPv4 running out of addresses.
Viz také
- ISAPI
Internet Server Application Programming Interface is the API of Internet Information Services (IIS).
- ISP
An Internet service provider is a business or organization that offers users access to the Internet and related services.
- ISO
Mezinárodní organizace pro normalizaci
Viz také
- JPEG
Nejčastěji používaná standardní metoda ztrátové komprese pro fotografické obrazy.
Viz také
- JPG
- viz JPEG
- Klíč
- viz Index
- LaTeX
a document preparation system for the TeX typesetting program.
Viz také
- Mac
Apple Macintosh is a line of personal computers designed, developed, manufactured, and marketed by Apple Inc.
Viz také
- macOS
the operating system which is included with all currently shipping Apple Macintosh computers in the consumer and professional markets.
Viz také
- mbstring
The PHP mbstring functions provide support for languages represented by multi-byte character sets, most notably UTF-8.
If you have troubles installing this extension, please follow 1.20 I receive an error about missing mysqli and mysql extensions., it provides useful hints.
- Typ média
A media type (formerly known as MIME type) is a two-part identifier for file formats and format contents transmitted on the Internet.
Viz také
- MIME
Multipurpose Internet Mail Extensions is an Internet Standard for the format of e-mail.
Viz také
- module
modular extension for the Apache HTTP Server httpd.
- mod_proxy_fcgi
an Apache module implementing a Fast CGI interface; PHP can be run as a CGI module, FastCGI, or directly as an Apache module.
Viz také
- MySQL
a multithreaded, multi-user, SQL (Structured Query Language) Database Management System (DBMS).
Viz také
- MySQLi
the improved MySQL client PHP extension.
Viz také
- mysql
the MySQL client PHP extension.
Viz také
- OpenDocument
an open standard for office documents.
Viz také
- OS X
viz macOS.
Viz také
Portable Document Format is a file format developed by Adobe Systems for representing two-dimensional documents in a device-independent and resolution-independent format.
Viz také
- PEAR
the PHP Extension and Application Repository.
Viz také
Viz také
- PCRE
Perl-Compatible Regular Expressions is the Perl-compatible regular expression functions for PHP
Viz také
- PHP
short for „PHP: Hypertext Preprocessor“, is an open-source, reflective programming language used mainly for developing server-side applications and dynamic web content, and more recently, a broader range of software applications.
Viz také
- port
a connection through which data is sent and received.
- primary key
A primary key is an index over one or more fields in a table with unique values for every single row in this table. Every table should have a primary key for easier accessing/identifying data in this table. There can only be one primary key per table and it is named always PRIMARY. In fact, a primary key is just an unique key with the name PRIMARY. If no primary key is defined MySQL will use first unique key as primary key if there is one.
You can create the primary key when creating the table (in phpMyAdmin just check the primary key radio buttons for each field you wish to be part of the primary key).
You can also add a primary key to an existing table with ALTER TABLE or CREATE INDEX (in phpMyAdmin you can just click on ‚add index‘ on the table structure page below the listed fields).
- RFC
Request for Comments (RFC) documents are a series of memoranda encompassing new research, innovations, and methodologies applicable to Internet technologies.
- RFC 1952
GZIP file format specification version 4.3
Viz také
- Row (record, tuple)
represents a single, implicitly structured data item in a table.
Viz také
- Server
a computer system that provides services to other computing systems over a network.
- Sodium
The Sodium PHP extension.
Viz také
- Storage Engines
MySQL can use several different formats for storing data on disk, these are called storage engines or table types. phpMyAdmin allows a user to change their storage engine for a particular table through the operations tab.
Common table types are InnoDB and MyISAM, though many others exist and may be desirable in some situations.
- socket
a form of inter-process communication.
- SSL
Secure Sockets Layer, (now superseded by TLS) is a cryptographic protocol which provides secure communication on the Internet.
- Stored procedure
a subroutine available to applications accessing a relational database system
- SQL
strukturovaný dotazovací jazyk (Structured Query Language)
Viz také
- Tabulka
a set of data elements (cells) that is organized, defined and stored as horizontal rows and vertical columns where each item can be uniquely identified by a label or key or by its position in relation to other items.
- tar
a type of archive file format, from „Tape Archive“.
- TCP
Transmission Control Protocol is one of the core protocols of the Internet protocol suite.
- TCPDF
PHP library to generate PDF files.
Viz také
Viz také
- spoušť
a procedural code that is automatically executed in response to certain events on a particular table or view in a database
- unique key
- A unique key is an index over one or more fields in a table which has a unique value for each row. The first unique key will be treated as primary key if there is no primary key defined.
- URL
Uniform Resource Locator is a sequence of characters, conforming to a standardized format, that is used for referring to resources, such as documents and images on the Internet, by their location.
Viz také
- Webový server
A computer (program) that is responsible for accepting HTTP requests from clients and serving them web pages.
Viz také
- XML
Extensible Markup Language is a W3C-recommended general-purpose markup language for creating special-purpose markup languages, capable of describing many different kinds of data.
Viz také
- ZIP
a popular data compression and archival format.
- Zlib
an open-source, cross-platform data compression library by Jean-loup Gailly and Mark Adler.
Viz také
- Content Security Policy
The HTTP Content-Security-Policy response header allows web site administrators to control resources the user agent is allowed to load for a given page.