s4studio

Tworzymy systemy dedykowane z interfejsem www wykonane w technologiach: PHP7 + PostgreSQL/MySQL + JavaScript + jQuery + HTML5 + CSS3.
Nasze realizacje to m.in. sklepy internetowe, strony z panelem CMS, systemy CRM.
Współpracujemy z agencjami interaktywnymi w całym kraju.

<?php
namespace internet\s4studio;
class Internet {
//whole Web space
}
class s4studio extends Internet {
function __construct() {
$this->email = 'biuro@s4studio.pl';
$this->telefon = '+48 515 143 500';
}
function __toString() {
return 'kontakt: '.$this->telefon.' • '.$this->email;
}
}
echo (new s4studio());
?>
kontakt: +48 515 143 500 • biuro@s4studio.pl