Posted by Daniel in CodeIgniter, SEO, Web Design, Web2.0Jul 31st, 2007 | 25 responses
CodeIgniter is great because you can separate your content from your styling with controllers, models, and views. Another great thing is when you create a website with CI, you automatically use friendly URLs (if you use an .htaccess file). If you have a bunch of unrelated pages however, you might wonder how you can keep those URLs as tiny as possible without having thirty different controllers for each page. For example, I have a CI application with a home controller that has about 20 different functions inside of it. To access each one of these functions, I would normally visit http://localhost/home/contact...
Posted by Daniel in Apple, Business, iPhone, Marketing, SEO, Web Design, Web2.0Jul 30th, 2007 | one response
This looks like it will be good.
The challenge starts on Wednesday, August 1st, 2007.
So far, I have learned about some great new tools for your website, some I haven’t even heard of before. If you haven’t already, sign up now! Catch up on the blogs, podcasts, video podcasts, and do a little research on the websites he mentions in the videos such as Facebook, Technorati, Twitter, StumbleUpon, Digg, delicious, and Flickr. I don’t know how to use every one of them to their full advantage, but I think everyone’s in for a treat on Wednesday!
Thirty Day Challenge Sign Up
Posted by Daniel in CodeIgniter, SEO, Web Design, Web2.0Jul 30th, 2007 | 148 responses
CodeIgniter is an awesome tool if you want to learn PHP or start to use object oriented programming (OOP) with your new website. CodeIgniter is flexible with a small footprint and offers tons of features already built in, such as session management, active record use with mysql databases. The best part is it lets you use Model-View-Controller (MVC) programming. This way, your styling (view) is separate from your content (generated by controller) and lets you manipulate your raw data with a model.
There are two awesome video tutorials on CodeIgniter to show you how powerful and easy CodeIgniter...
Posted by Daniel in SEO, Web DesignJul 29th, 2007 | 3 responses
Nowadays, there are so many rules one must follow for a good rank in the top search engines. Search engines are almost as smart as humans reading your page content making sure your site is where search engine visitors want to go.
The best way for potential customers to find your site is organically. After all, if someone clicks an ad to your website, and can’t find what they are looking for or the landing page isn’t relevant to what they are looking for, they will bounce (leave your site), leaving you paying for your ad that did no good. If you run an event planning company and someone...
Posted by Daniel in Marketing, SEO, Web Design, Web2.0Jul 24th, 2007 | 2 responses
A short but sweet list of guidelines to follow while building a web 2.0 website.
Learn XHTML. Make sure your pages are XHTML transitional or strict. This will help with your visibility to search engines and cross-browser compatibility.
XHTML Tutorial by W3Schools
Learn CSS. With CSS, you can start separating content from appearance and CSS is more cross browser friendly than tables. One thing to avoid while programming with CSS is to use too many nested divs. If you start using too many, it’s kind of pointless to start using CSS rather than tables in the first place. If you are just...