Page 1 of 2 12 LastLast
Results 1 to 10 of 20

Thread: Which file editor do you use for programming?

  1. #1
    Silver's Avatar
    Silver is offline Administrator
    Join Date
    Dec 2009
    Location
    GrowADollar
    Posts
    325

    Default Which file editor do you use for programming?

    So when your programming which is your favourite editing program to use? If I'm doing web programming such as php, html, css then I'll usually just open up Dreamweaver as I find the colour highlighting pretty good and I'm used to it.

    However if it's a language such as C or bash then I find it easier to use Notepad++

    If I'm just being lazy or it's very simple code then I'll open up notepad as it's extremely fast and simple, I once coded a whole php program on the notepad on my iPhone in a very boring university lecture... that was slightly irritating with the automatic iPhone text correction when programming!

  2. #2
    dem0x7's Avatar
    dem0x7 is offline Member
    Join Date
    Mar 2010
    Location
    North Carolina
    Posts
    33

    Default

    Notepad++ for me! I used to use Editpad Pro not sure if anyone has heard of it, but I made the switch to Notepad++ and I love it!

    LOL, you must have been really bored to code a PHP Program on your iPhone!!!! That would have driven my crazy!

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  3. #3
    Silver's Avatar
    Silver is offline Administrator
    Join Date
    Dec 2009
    Location
    GrowADollar
    Posts
    325

    Default

    Yeh I was very, we had 2 hours being taught about safety when creating variables using the get function, most people were quite new to php but for me it was painful.

  4. #4
    dem0x7's Avatar
    dem0x7 is offline Member
    Join Date
    Mar 2010
    Location
    North Carolina
    Posts
    33

    Default

    Heh yeah. Do you use any Frameworks? I've been using CodeIgniter and it's awesome!

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  5. #5
    Silver's Avatar
    Silver is offline Administrator
    Join Date
    Dec 2009
    Location
    GrowADollar
    Posts
    325

    Default

    Not too sure about this, what is a framework?

  6. #6
    dem0x7's Avatar
    dem0x7 is offline Member
    Join Date
    Mar 2010
    Location
    North Carolina
    Posts
    33

    Default

    It basically just has libraries built in to the system, which makes it easier for you to code. It's easy to configure, set up, and usually has a very well written documentation for each function.
    CodeIgniter uses an MVC system which is Model View Controller.

    An example would be:
    View: (messages_view.php)
    Code:
    <html>
     <body>
        <h1><?php echo $messageCount; ?> Unread Messages</h1>
     </body>
    </html>
    Controller: (messages.php)
    Code:
    function total_messages() {
       $this->load->model("messages");
       $number_of_messages = $this->messages->count_messages();
       $data['messageCount'] = $number_of_messages;
       $this->load->view("messages_view", $data);
    }
    Model: (messages.php)
    Code:
    function count_messages() {
          $this->db->where("read", "0");
    	  $this->db->from("messages");
    	  $query = $this->db->get();
    	  
    	  return $query->num_rows();
    }
    So it makes it really easy and organized. All of the template files go in the Views folder. The controller interacts with the Model, calling functions and telling which views to display. The Model has all the PHP functions.

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  7. #7
    RedAlerT is offline Junior Member
    Join Date
    Mar 2010
    Posts
    11

    Default

    yeah... i also use Dreamweaver as it easy to use and it is also a multifple programming languages editor :P

  8. #8
    Nicky s's Avatar
    Nicky s is offline Moderator
    Join Date
    Jan 2010
    Location
    UK - GrowaDollar
    Posts
    227

    Default

    Dreamweaver 8 i do also use dreamweaver cs4 but i am a lot more use to 8 plus cs4 always crashes have also used notepad now and then

    To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

  9. #9
    psycho_geek's Avatar
    psycho_geek is offline Junior Member
    Join Date
    Mar 2010
    Posts
    18

    Default

    I mainly use Dreamweaver, nothing beats it!

    Sometimes I also use Notepad++ if some quick coding is to be done.

  10. #10
    dkdanielkli's Avatar
    dkdanielkli is offline Junior Member
    Join Date
    Mar 2010
    Posts
    28

    Default

    I use BlueVoda whenever i need to do something on web building !
    It's a great woftweare, u should try it...

Page 1 of 2 12 LastLast

Similar Threads

  1. What File Hosting Do You Use
    By Nicky s in forum Hosting
    Replies: 9
    Last Post: 01-06-2011, 05:34 AM
  2. Why we use html and htm file types
    By Silver in forum Coding
    Replies: 3
    Last Post: 01-06-2011, 05:16 AM
  3. Replies: 1
    Last Post: 01-06-2011, 04:52 AM
  4. Replies: 3
    Last Post: 03-17-2010, 05:15 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •