Hostname: Difference between revisions

Added PL/SQL entry
(added PowerBASIC)
(Added PL/SQL entry)
Line 173:
{{works with|PHP|5.3+}}
<lang php>echo gethostname();</lang>
 
 
=={{header|PL/SQL}}==
<lang PL/SQL>
SET serveroutput on
BEGIN
DBMS_OUTPUT.PUT_LINE(UTL_INADDR.GET_HOST_NAME);
END;
</lang>
 
=={{header|Pop11}}==
Anonymous user