Web Dev Noob
#1
Posted 09 June 2010 - 05:28 PM
Here are my current goals:
1. To make a simple app that gets data from the database and prints it out on the page.
First question, do I just follow the installation directions in the Kohana documentation to install it?
Also, can someone point me to a guide to setting up a MySQL database, adding a table, and some dummy data?
#2
Posted 09 June 2010 - 06:28 PM

Please do not PM me for support (unless its a private matter). Instead, post in the appropriate forum and help will be provided accordingly.
Helpful links: Terms of Service | Privacy Policy | Wiki - Tutorials & Help | VlexoFree Support |
#3
Posted 19 January 2011 - 05:22 AM
#4
Posted 19 January 2011 - 03:31 PM
Can I ask what made you choose Kohana over the rest?
And Eli, lmao.
Kiro R.
VlexoFree Support Team
Please do not PM me for support. Instead, post in the appropriate forum and help will be provided accordingly.
Helpful links: Terms of Service | Privacy Policy | Wiki - Tutorials & Description | VlexoFree Support |
#5
Posted 08 January 2012 - 01:47 AM
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>";
Edited by BeanMe, 08 January 2012 - 01:47 AM.
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users












