Jump to content


VlexoFree Notice

Interviews will be open every Friday starting at 12am PDT and lasting for 24 hours.

BeanMe

Member Since 07 Jan 2012
Offline Last Active Jan 30 2012 08:19 AM
-----

Posts I've Made

In Topic: Python CGI

13 January 2012 - 11:57 PM

Thank you very much!

Please move this to solved problems!

In Topic: Web Dev Noob

08 January 2012 - 01:47 AM

What's Kohana?

Here a PHP example:
mysql_connect("localhost", "<user>", "<password>");
mysql_select_db("<database>");
$res = mysql_query("SELECT * FROM <table>");
echo "<html><head><title>Read out the DB</title></head><body>";
echo "<pre>"
while ($end = mysql_fetch_assoc($res)) {
	print_r($end);
}
echo "</pre>";
echo "</body></html>";

In Topic: PYTHON

08 January 2012 - 01:43 AM

Put it in the cgi-bin?

In Topic: Antivirus required for Linux?

08 January 2012 - 01:41 AM

And if you doubt about network hacking: SELinux (or Novell AppArmor) will protect programs from doing things they shouldn't do.

Note: I am a WINDOWS user, and I also HATE windows.

In Topic: SpAmAnDFlOoD

08 January 2012 - 01:37 AM

print("Hello, World!")