How to easily display PHP/HTML codes in your webpages ShowHow to easily display PHP/HTML codes in your webpages
Issue
What code to use?
Issue
If you want your visitors to be able to see the source codes of your webpage, there is a very easy way to do so. Normally, all you have to do in a...
[PHP] Notice: Undefined index Show[PHP] Notice: Undefined index
When using $ _POST or $ _GET to retrieve the variables from a form , you may encounter this error:
Notice: Undefined index 'fields of the table' in 'path of php file being executes' on line 'current...
Parsing a binary file in PHP ShowParsing a binary file in PHP
When using low level languages like C or Pascal, it is a common procedure, to data in a binary file (a record that can't be translated into text).
Using C language, suppose you want to save the value...
[PHP]Detect the display resolution Show[PHP]Detect the display resolution
PHP does not possess any function allowing detection of the display resolution.
The solution is to make use of Javascript to detect the resolution through the width and height attributes of the...
PHP Concatenation ShowPHP Concatenation
PHP allows you to concatenate strings with the "."
$concatenation= $a . $b;
Or to affect, in the variable $ a, the value of the concatenation of $ a and $ b:
$a.=$b;
To concatenate strings and...
Deleting accents with PHP ShowDeleting accents with PHP
For one reason or more, it may be useful to convert PHP accentuated text to a text without accents.
Below is a simple function of how to perform this setting :
function strip-Accents($string){
return...
Download ASP/PHP Web Application Builder ShowASP/PHP Web Application Builder is a simple database development application.
Since it is very simple, it does not require any knowledge on programming, it easily allows you to create your databases with ASP and PHP languages.
ASP/PHP Web...
Download PHP Edit ShowPHPEdit is a tool which works under Windows for PHP Language. Simple and easy to use, the application provides various number of functions.
Features
Syntactic coloring
Auto-complete of functions integrated
Debugger PHP
HTML forms ShowForms
Interactive forms let web page authors give their pages interactive elements, such as for receiving messages from their readers, much like the reply cards found in some magazines. The reader enters information by filling in fields or clicking...
Managing images in HTML ShowHow do you display images on a web page?
Having a few images on a website can make it more attractive and user-friendly. However, it is important not to go overboard, since images can take a long time to load, and in some cases can make a document...
Directory ShowWhat is a directory?
A directory (also known as a folder) is an IT element that can contain files.
Imagine a large dresser containing drawers in which files or other drawers are stored. A directory can in fact contain:
files
other...