PHP Tutorial
HTML Tutorial
PHP online editor, run and write PHP code.
PHP script exemple - online editor.
Edit Article
With Agernic.com online code editor, you can edit HTML, CSS PHP and JavaScript code, and view the result in your browser.
Simple PHP editor that is easy to use and free of cost. You might like it interface and features that include Live running environment, support for popular PHP frameworks, code snippets, option to share the code.
Simple PHP editor that is easy to use and free of cost. You might like it interface and features that include Live running environment, support for popular PHP frameworks, code snippets, option to share the code.
Exemple PHP script:
// returns true because $x is greater than or equal to $y<?php
$x =10;
$y =6;
echo $x + $y."<br />";
echo $x - $y."<br />";
echo $x * $y."<br />";
echo $x / $y."<br />";
echo $x % $y."<br />";
echo $x ** $y."<br />";
$x = 20;
$x += 100;
echo $x."<br /><br /><br />";
?>
<?php
$x = 50;
$y = 50;
var_dump($x >= $y); // returns true because $x is greater than or equal to $y
?>
PHP Functii String
PHP strrchr() FunctionPHP md5() function
PHP similar_text() function
PHP str_repeat() function
PHP str_split() function
PHP strcmp() function
- strtolower()
- strpos()
- str_word_count()
- strlen()
- implode()
- explode()
- Learn PHP online from the basic to the a...
- HTML Headings, examples...
- How to get PHP errors to display?...
- How to prevent sql injection in php mysq...
SQL create table primary key autoincreme...