Jump to content


VlexoFree Notice

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

- - - - -

Web Dev Noob


  • Please log in to reply
4 replies to this topic

#1 jodm

jodm

    Newbie

  • Pre-Members
  • 4 posts

Posted 09 June 2010 - 05:28 PM

So... I'm very new to web dev that isn't on the .net stack. With my personal account, I'd like to explore php and MySQL more. I've done some reading and I've decided I want to go with Kohana as my php web framework.

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?

Ad Bot


      #2 Eli L

      Eli L

        VlexoFree Owner

      • Owner
      • 6,950 posts
      • LocationWashington, USA

      Posted 09 June 2010 - 06:28 PM

      I can help with the database! Just go into cpanel and click on Database Wizard!

      Posted Image


      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 duaneh

      duaneh

        Newbie

      • Pre-Members
      • 4 posts

      Posted 19 January 2011 - 05:22 AM

      there are some really nice guides out there on google.step for step form.

      #4 Kiro R

      Kiro R

        Advanced Member

      • VlexoFree Support
      • 426 posts

      Posted 19 January 2011 - 03:31 PM

      Impressive decision, indeed.
      Can I ask what made you choose Kohana over the rest?

      And Eli, lmao.
      Yours Sincerely,

      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 BeanMe

      BeanMe

        Newbie

      • Members
      • 9 posts

      Posted 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>";
      

      Edited by BeanMe, 08 January 2012 - 01:47 AM.





      1 user(s) are reading this topic

      0 members, 1 guests, 0 anonymous users