Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
a2-optimized /
app /
vendor /
j4mie /
idiorm /
Delete
Unzip
Name
Size
Permission
Date
Action
docs
[ DIR ]
drwxr-xr-x
2025-04-30 04:08
CONTRIBUTING.md
677
B
-rw-r--r--
2025-04-29 15:40
README.markdown
17.73
KB
-rw-r--r--
2025-04-29 15:40
composer.json
1.33
KB
-rw-r--r--
2025-04-29 15:40
demo.php
2.35
KB
-rw-r--r--
2025-04-29 15:40
idiorm.php
94.95
KB
-rw-r--r--
2025-04-29 15:40
Save
Rename
<?php // ------------------- // // --- Idiorm Demo --- // // ------------------- // // Note: This is just about the simplest database-driven webapp it's possible to create // and is designed only for the purpose of demonstrating how Idiorm works. // In case it's not obvious: this is not the correct way to build web applications! // Require the idiorm file require_once("idiorm.php"); // Connect to the demo database file ORM::configure('sqlite:./demo.sqlite'); // This grabs the raw database connection from the ORM // class and creates the table if it doesn't already exist. // Wouldn't normally be needed if the table is already there. $db = ORM::get_db(); $db->exec(" CREATE TABLE IF NOT EXISTS contact ( id INTEGER PRIMARY KEY, name TEXT, email TEXT );" ); // Handle POST submission if (!empty($_POST)) { // Create a new contact object $contact = ORM::for_table('contact')->create(); // SHOULD BE MORE ERROR CHECKING HERE! // Set the properties of the object $contact->name = $_POST['name']; $contact->email = $_POST['email']; // Save the object to the database $contact->save(); // Redirect to self. header('Location: ' . basename(__FILE__)); exit; } // Get a list of all contacts from the database $count = ORM::for_table('contact')->count(); $contact_list = ORM::for_table('contact')->find_many(); ?> <html> <head> <title>Idiorm Demo</title> </head> <body> <h1>Idiorm Demo</h1> <h2>Contact List (<?php echo $count; ?> contacts)</h2> <ul> <?php foreach ($contact_list as $contact): ?> <li> <strong><?php echo $contact->name ?></strong> <a href="mailto:<?php echo $contact->email; ?>"><?php echo $contact->email; ?></a> </li> <?php endforeach; ?> </ul> <form method="post" action=""> <h2>Add Contact</h2> <p><label for="name">Name:</label> <input type="text" name="name" /></p> <p><label for="email">Email:</label> <input type="email" name="email" /></p> <input type="submit" value="Create" /> </form> </body> </html>