You can use basic ASCII Text editors to write PHP code. You simply need to save the file with the .php extension.
Related Articles
*NEW
PHP Project (Simple) – Simple Network Up/Down Monitor
This is a simple Up/Down network monitor to show what your server is able to see on the network and internet. shell_exec() https://www.php.net/manual/en/function.shell-exec.php shellExecPingArray.php
PHP Programming (NEW)
PHP – Setting Variables
Variables in PHP can be set without needing to be declared. <?php $string = “Hello World”; $int = 1; $float = 2.2; print “<h1>String</h1>”; print $string; print “<h1>Int</h1>”; print $int; print “<h1>Float</h1>”; print $float; […]
PHP Programming (NEW)
PHP – Sort Array by Key – ksort() and krsort()
You can sort arrays by key with ksort() and krsort().
Be the first to comment