File: commands/helloworld.php

Recommend this page to a friend!
  Classes of Andoitz Jordan Marmolejo   JavaScript Query Terminal   commands/helloworld.php   Download  
File: commands/helloworld.php
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: JavaScript Query Terminal
Online console to run server commands using AJAX
Author: By
Last change: Update of commands/helloworld.php
Date: 2 years ago
Size: 242 bytes
 

Contents

Class file image Download
<?php class helloworld extends Command{ public function __construct(){ parent::__construct(); } public function init($params){ $result = "Hello World!"; if(isset($params[1])) $result.= " ".$params[1]; $this->data = $result; } } ?>