Examples of...
Language and literature (198)
Grammar, Letters and essays, Literature, Poetry, Redaction, Spelling, Vocabulary, Science (121)
Agriculture, Anatomy, architecture, Astronomy, Biology and Biotechnology, Chemistry, Mathematics, Physics, Technology, Social Sciences (22)
Accounting, Administration, Anthropology, Communication Sciences, Economic Sciences, Education, Geography, History, Human Resources, Law, Philosophy, Political science, Sociology, Tourism, Health and Wellness (22)
Alternative Medicine, Beauty, Diet and Nutrition, General Medicine, Geriatrics, Massage, Nursing, Other topics, Pharmacy, Psychiatry, Psychology, Veterinary, Languages (9)
Catalan, Dutch, English, French, German, Italian, Japanese, Latin, Other languages, Portuguese, Russian, Spanish, You are here: Examples10.com > Computer - Programming
Examples of Computer - Programming
Htmlspecialchars PHP Posted on 2011-01-15 12:38:54
The htmlspecialchars() function converts special characters to HTML entities
string htmlspecialchars ( string $string )
The translations ...Htmlspecialchars_decode PHP Posted on 2011-01-15 12:35:47
The htmlspecialchars_decode() function convert special HTML entities back to characters
string htmlspecialchars_decode ( string $string )...Htmlentities PHP Posted on 2011-01-15 12:33:50
The htmlentities() function convert all applicable characters to HTML entities
string htmlentities ( string $string )
This function is id...Html_entity_decode PHP Posted on 2011-01-15 12:30:04
The html_entity_decode() function converts all HTML entities to their applicable characters.
The html_entity_decode() function is the opposi...Explode PHP Posted on 2011-01-15 12:26:14
The explode() function split a string by string into an array.
array explode ( string $delimiter , string $string )
delimiter: The bounda...Echo PHP Posted on 2011-01-15 12:22:55
The echo() function outputs one or more strings.
void echo ( string $arg1 )
arg1: The parameter to output.
Examples of echo function:
...Str_replace() in PHP Posted on 2011-01-15 12:19:14
The str_replace() function replace all occurrences of the search string with the replacement string
mixed str_replace ( mixed $search , mix...Position a background image with CSS Posted on 2011-01-14 14:02:53
How to position a background image, here one example:
<html>
<head>
<style type="text/css">
body{
background-image:url("...Background color of elements Posted on 2011-01-14 14:01:40
Set the background color of a page with this script:
<html>
<head>
<style type="text/css">
h1{background-color:#6495ed;}
...Background color of a page Posted on 2011-01-14 14:00:31
Set the background color of a page with this script:
<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4d...Showing 1 - 10 results of 10
1