Adding Avatar On Wordpress Comment

Wordpress July 11th, 2008

Avatars, or the well known Gravatars, are tiny images, often called your online identity, picture, badge, logo, or graphic image which represent you and/or your blog. Some use photographs of their face or body, or a body part like an eye, nose, or hand. Others use pictures of animals, flowers, scenics, or graphic images. Many professional bloggers use their logo.

This is about customization your template. Not all Wordpress template have user avatar shown on comments. But don’t worry, you can add it manually.

First go to dashboard or admin page, then go to design and theme editor. On your current theme add this CSS script on Stylesheet (style.css).

Read the rest of this entry »

Sphere: Related Content

Tags: , , , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Random Image

PHP July 10th, 2008

Syalalala~
Hmm… PHP again^^ today i tried to make random image with PHP. I used it on my sidebar to show my photos but in this tutorial I use localhost with apache server (XAMPP). First go to directory c:\xampp\htdocs and create new folder ‘random’. Then open ‘random’ and create new folder again to save your image. For example I create images folder (c:\xampp\htdocs\random\images). Put your images on it, don’t forget to rename your image to numerical number. For example: I have 9 image then I rename it to ‘1.jpg,2.jpg,3.jpg,4.jpg,…,9.jpg’. Finish?

Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Paging With PHP [Part2]

PHP July 10th, 2008

After you learn paging with PHP on part 1. I’ll explain how to paging with searching function. First you must add form to get keyword for searching.

1
2
3
4
5
<!--searching form-->
<form method="get" action="pagingsearch.php">
Customer Name= <input type="text" name="names">
<input type="submit" name="search" value="Search">
</form>

With get methods, form will sent keyword for searching whenever it submitted.
The you must catch data on PHP script with:

1
2
3
4
5
//paging with searching
$search=$_GET['search'];
 
//get name for searching
$names=$_GET['names'];

Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

You Tube Online Converter

Whatever July 9th, 2008

Want to download You Tube video without any software converter installed? You can use You Tube online converter. This service is 100% free to use, but may be you can donate the site for development. Today I try to browsing and find some site that provide this service.. First choose your video on Youtube.com, then copy paste video’s address that shown on address bar ( Example:http://www.youtube.com/watch?v=D-kVkodsDRs) to text area on any site bellow:

Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Paging With PHP [Part1]

PHP July 8th, 2008

In this post I’ll give you some tutorial how to paging with PHP. In this case I used SQLite for my database. First I make customers table with SQLite admin.

SQlite Admin

Then I fill customers table with 10 customers data. This is PHP script to show all data without paging. Read the rest of this entry »

Sphere: Related Content

Tags: , ,
1 Star2 Stars3 Stars4 Stars5 Stars (No Ratings Yet)
Loading ... Loading ...

Blogroll Link Update