Jump to content

rohitnanda

New Members
  • Posts

    5
  • Joined

  • Last visited

    Never

About rohitnanda

  • Birthday 01/26/1986

Profile Information

  • Gender
    Male

rohitnanda's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. if you have to convert a database from sqlite to mysql... so you can use the convertor.. Here is a list of converters: http://www.sqlite.org/cvstrac/wiki?p=ConverterTools
  2. There are three areas in which the differences between HTML and XHTML affect our use of CSS: case sensitivity. optional tags. properties for the root element.
  3. think it should be pretty simple. In your app_controller, you could probably just add this, likely in the afterFilter() method, so that you can process any login info first: function afterFilter () { if ( $isUserLoggedIn ) { $this->layout = 'logged_in_layout'; } else { $this->layout = 'some_other_layout'; } }
  4. It's the same as your mysql would be stock mysql usually root for name and no password, but you should create a new admin name for mysql with a password
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.