A Standard Palindrome is a word or phrase that is the same forward as it is backwards without punctuation and spaces. So here is a small PHP script that will check if a string is a standard palindrome.
Create a Basic Peeling Sticker Effect in Photoshop
A peeled sticker effect is a great effect to add to any design. Freom band logos to web design a peeled sticker effect can add a unique touch to any design.
Here’s how to do a basic peeled sticker effect in Photoshop.
7 Awesome Hand Drawn Fonts for Designers (Free)
Looking to spice up your designs with some new fonts? This quick round-up of seven hand-drawn fonts will add a touch of creativity to your projects. Each font in this list has a unique flair, perfect for making your designs stand out. Angelina ArtBrush Daniel Good Dog HandWerk Journal TrashHand Hand-drawn fonts add a unique …
Create Slick Silver Text in Photoshop
Nicely looking text is always a great addition to your design. You may have seen this style around the web and it is very easy to make. It’s perfect for welcome text, logos, and headers.
Began with making some text (or apply this to any current text you have), fonts that are thicker work better for this technique since it’s more noticeable.
Display Images in HTML
Ok so you want to add a image to a HTML document, heres how you do it. <img src=”URL OF IMAGE”> <img src=”http://www.google.com/intl/en_ALL/images/logo.gif”> This would produce this: More advanced things include alt, border, height, and width. Like this <img src=”http://www.google.com/intl/en_ALL/images/logo.gif” alt=”Google’s Logo” border=”2″ height=”30″ width=”30″> That would make this, because the height and width is …
Creating Links in HTML
Ok well you want to link your pages to each other here’s what you need to do. <a href=”/page.html”>Name of the Link</a> Here is the code you use, the href is the page you want to link to. If you want to a page that’s not a local file you can do. <a href=”http://google.com”>Google</a> You …
How to Limit Length of Text in PHP
Looking for a way to limit the length of a text string in PHP? Well here is a simple way to do it. In this example we will be using the PHP substr function. Let’s say you have a title like this:“This is a long title for a story this is a title wow.”And you …