So I found this great fee application called My Mobiler to use with your windows mobile phone or PDA. You plug in your device through your USB, and the screen pops up on your monitor. You can use your mouse and keyboard to run programs. I find it useful to quickly and easily check site designs in IE mobile and Opera Mobile.
Sometimes a wordpress plugin is not the proper solution for an complex application. You might want something to work alongside wordpress instead. One of the nice features of Worpress is the user managament. The WordPress documentation for this is non-existant as far as I ca tell, so here’s how you can quickly have your software find out if a user is logged in outside of WordPress. Read the rest of this entry »
Here’s another article that’s pretty old, I don’t have a date on it but I think it’s about 7 years old. I’ve noticed that more and more sites focus more on ROI and less on looking cool these days, but there are still some good points here.
Many graphic design magazines and websites give awards for outstanding web design. Rarely do these awards take usability into consideration. Graphic Design is very important factor in web design, but there are more considerations to be made when building a website. What is usability, and how does it factor in measuring a site’s success Read the rest of this entry »
In the previous articles, I used a PHP shortcut to display variables. Just like this:
<?=$variable?>
That method, although very friendly and quick, is deprecated, so you should get used to doing this instead:
<?php echo $variable; ?>
I’ll keep you posted if I com up with anything else.
As I mentioned in my previous post, there are some old deprecated things here, I’ll update later.
You now know how to create and display variables with PHP. Here is a review of everything I’ve used so far.
How to break in and out of PHP:
-
<?php
-
//PHP Code Goes Here
-
?>
How to set a variable:
-
<?php
-
$variable = "Variable Value";
-
?>
How to quickly display a variable:
-
<?=$variable?>
Now we are going to use “if,” “else,” and “echo” to set default values for the title, and meta tags. There won’t be a step by step process for this one, I’m just gonna display the sample code for header.php. Everything else is done almost exactly the same as Part 2. Read the rest of this entry »
This is an older tutorial and contains deprecated PHP code. I’ll revisit this in the near future to elaborate.
PHP is great because not only will it allow you to insert files like SSIs, it allows you to easily pass variables on to them such as a page title (your server must support PHP for this to work). You don’t need to know anything about PHP to use this. This example will show how to do this and pass on individual page titles, descriptions and keywords. Read the rest of this entry »
Originally posted on the Steel Dolphin Forum a long long time ago.
Many of you know how to use Server Side Includes, and PHP/ASP. I am going to go over a few uses of these that make your life easier. You do not need to already know how to use these though.
The first rule to making your life easier as a web designer is changing as few files as possible when you need to make a change. That is why we use a separate CSS and JavaScript file, right? This all can be applied along with one of the philosophies behind XML, keep style separate from content.
This is very easy to do with Server Side Includes. How? Here’s the steps. (Your web server must support Server Side Includes)
The structure of your HTML is just as important as the visual structure. Properly implementing HTML structure will also make it easier to manage visual structure. Implementing HTML structure is easy to do whether you are hand coding or using WYSIWYG. Read the rest of this entry »