Webhosting
Domain, website & e-mail
Get started for US$0.49/mo.
US$0.49/mo. first year.
Renewal: US$3.99/mo.
.us
Register: US$12.00
Renew: US$14.40/year
.com
Register: US$2.02
Renew: US$19.80/year
.eu
Register: US$6.00
Renew: US$15.60/year
.org
Register: US$16.80
Renew: US$21.60/year
Make it
easy
Meet Peter and Thomas, the founders of myselfie.
1 out of 500.000+ hosted solutions at Simply.com
1 out of 500.000+ hosted solutions at Simply.com
200.000+
happy customers
Created by geeks
99.99%
up-time and daily backup
PHP OPcache
With OPcache for PHP the server puts rocket-speed on your website - automatically.
SSH to your web space
Run commands on your web space - exactly as if you had your own server.
Connect with AI assistant
Automate your hosting via our REST API, or give your AI assistant direct access via MCP. Use Claude or ChatGPT to manage webhosting, domains and DNS in natural language.
World-class self-service
A control panel that gives you control – manage PHP version, MySQL databases and much more.
<?php
declare(strict_types=1);
$config = parse_ini_file('config.ini');
$db = new PDO($config['dsn']);
$db->setAttribute(PDO::ATTR_ERRMODE,
PDO::ERRMODE_EXCEPTION);
function sanitize(string $input): string {
return htmlspecialchars(
trim($input), ENT_QUOTES, 'UTF-8'
);
}
function fetchUsers(PDO $db): array {
$sql = 'SELECT id, name, email, status,
created_at FROM users
WHERE deleted_at IS NULL
ORDER BY created_at DESC';
return $db->query($sql)
->fetchAll(PDO::FETCH_ASSOC);
}
$users = fetchUsers($db);
$active = array_filter($users,
fn($u) => $u['status'] === 'active'
);
$grouped = [];
foreach ($active as $user) {
$month = date('Y-m',
strtotime($user['created_at'])
);
$grouped[$month][] = $user;
}
foreach ($active as $user) {
$name = sanitize($user['name']);
$email = filter_var(
$user['email'],
FILTER_VALIDATE_EMAIL
);
if (!$email) continue;
$token = bin2hex(random_bytes(16));
$hash = password_hash(
$token, PASSWORD_ARGON2ID
);
$stmt = $db->prepare(
'UPDATE users SET token = ?
WHERE id = ?'
);
$stmt->execute([$hash, $user['id']]);
$headers = implode("\r\n", [
'From: noreply@example.com',
'Content-Type: text/html',
'X-Mailer: PHP/' . phpversion(),
]);
mail($email, 'Welcome',
"<h1>Hi {$name}</h1>",
$headers
);
}
$stats = [
'total' => count($users),
'active' => count($active),
'months' => count($grouped),
'memory' => memory_get_peak_usage(),
'time' => microtime(true),
];
header('Content-Type: application/json');
header('Cache-Control: no-store');
echo json_encode($stats,
JSON_PRETTY_PRINT
);
Status
Online
PHP
8.5
Disk
4.2 / 10 GB
SSL
Active
Uptime
99.99%
Requests
3,454
12.5%
Tim Holmvard
Support Manager
Average response time of only 8m
Packages for everyone
Get your
web space now
Basic Suite
For the simple needs
US$0.59/mo
first year
US$8.94/mo
at renewal
- 10 GB server space
- 2 GB space per mail account
- 512 MB RAM
- Associate all the domains you want
- Free and unlimited traffic
- PHP or ASP.NET/.NET Core
- Let's Encrypt SSL
- WordPress tools
- Quick help via support form/ticket
Popular
Standard Suite
For most needs
US$0.64/mo
first year
US$16.74/mo
at renewal
- 20 GB server space
- 8 GB space per mail account
- 1024 MB RAM
- Associate all the domains you want
- Free and unlimited traffic
- PHP or ASP.NET/.NET Core
- Let's Encrypt SSL
- WordPress tools
- Quick help via support form/ticket
Pro Suite
For webshops and large websites
US$3.60/mo
first year
US$25.20/mo
at renewal
- 100 GB server space
- 16 GB space per mail account
- 1536 MB RAM
- Associate all the domains you want
- Free and unlimited traffic
- PHP or ASP.NET/.NET Core
- Let's Encrypt SSL
- WordPress tools
- Quick help via support form/ticket
- Phone support included