Archive for the ‘Web Design’ Category

PHP Variables

Thursday, June 11th, 2009

I am going to start a new series on PHP programming 101. Check back often for new tutorials, ideas, facts and featured functions. If you have any suggestions or questions about anything PHP related don’t hesitate to leave a comment.

The concept of a variable is used to store information that can be used later on. PHP variables are very easy to setup and define; here is the syntax:

$nameOfVariable = Value;

where Value can be any string.

Examples:

$var = ‘Hello World’;
$data = ‘12345’;
$myString = ‘xyz’;

To print a variable out to the webpage, just use the ‘echo’ statement:

echo $var;

According to www.tizag.com, here are some important tips on variable naming conventions:

There are a few rules that you need to follow when choosing a name for your PHP variables.

PHP variables must start with a letter or underscore “_”.
PHP variables may only be comprised of alpha-numeric characters and underscores. a-z, A-Z, 0-9, or _ .
Variables with more than one word should be separated with underscores. $my_variable
Variables with more than one word can also be distinguished with capitalization. $myVariable

PHP Programmer for small to medium sized projects

Monday, May 4th, 2009

If you have something easy you need done in a jiffy – send me an email. I knock out contact forms, registration forms, data entry forms, etc. pretty quickly. My prices are competitive and reasonable.

How to install WordPress

Monday, December 15th, 2008

Go their website and read the instructions – http://wordpress.com/

However, if you cannot figure it out or you just don’t have the time to mess with it, give me a call and I can help you out. I have installed it plenty of times for other sites I have worked on.

Call now! 1.910.538.6731 use the Contact page contact form to send me an email.

On a side note, I saw this job post on Craigslist today:

We need the following today:

– Someone to setup WordPress on our host
– Take our custom/ branded CSS and create a WordPress template
– Install the new custom template to the WordPress blog

Send hourly/ project rate and examples of your work. This should not take you more than 2 hours.

I find it amusing how someone who does NOT know how to install WordPress, much less create a custom WordPress template, know that this type of project should only take 2 hours. Without seeing the complexity of the design, it would be impossible to quote an accurate estimate on the time needed.

Hire a web designer

Wednesday, November 26th, 2008

Looking for a web designer? Looking for a web developer? Looking for someone who can help you update your existing site?

Look no further! We can help! Call us today for a free consultation and quote – 1.910.538.6731

NC Website Builder

Monday, October 20th, 2008

Looking for a website builder? Look no further – we provide a full array of web services from design, development, programming, SEO and more.

Call us today for a free quote! 1.910.538.6731

Fall/Winter theme based websites

Wednesday, October 1st, 2008

The seasons are changing, Fall and Winter are on their way; do you need a seasonal website? Seasonal websites exist only for a short period of time and have a very specific goal in mind during a short season.

At Impulse, we can design mini-sites that can fit any theme you can come up with – whether it be for Halloween, Thanksgiving or Christmas. These mini-sites can be anywhere from 1 – 3 pages and can be up on the internet within 2 weeks.

Cross Browser testing for web designers

Monday, September 8th, 2008
Are you a Mac-head without a way to test your web designs on the most popular browser, Internet Explorer?
Are you a PC-freak with no way of testing your web designs on the popular Safari browser that is found on all Macs?
Look no further! Litmus is a new web based app that will show you how your web design mockup looks on all major browsers.
Link: http://litmusapp.com/
Straight from their website:
We won’t preach to you about cross-browser compatibility. We know you know it’s essential your sites look great across all modern browsers.
Litmus shows you exactly how your designs look on every platform, across every popular web browser. (And the not-so-popular ones.)
Once you’ve finished testing, one click publishes a full compatibility report ready for review by your client or boss. It’s pretty neat.

I need to accept donations

Thursday, August 28th, 2008

1. You are a non-profit agency

2. You have a website
3. You want to accept donations online
Solution: Paypal Donate buttons – easy to setup and easier to install on website. Paypal takes a small percentage of each transaction and you keep the rest. Then you can transfer the funds to your bank account at your leisure.

HTML/CSS/PHP online forms for websites

Thursday, August 14th, 2008

Impulse codes standard and custom forms online in HTML/CSS/PHP such as:

Mailing list forms
Contact forms
Customer Satisfaction Surveys
Employment Applications
Event registrations
Online order forms
Party invites
Lead generation forms
Bug tracker forms
Opt-in forms
**your form here**
These are just some examples, but we can code anything you have in mind.
Call us today if you need help adding a form to your website 910.538.6731 or email us: jonathan [at] impulsewebdesigns.com

CSS Classes vs Id

Thursday, August 14th, 2008

Sometimes I forget which one uses the # symbol and which one uses the ‘.’ when defining these elements in your style sheet. In fact, when should you use one over the other? What rules govern the selection of classes or id’s?

Here is a nice little article from www.tizag.com that may help you out.
Link? Tizag