POST YOUR LOG

Go to the Admin page and use your user account name and password that you created in “ACCOUNT MANAGER” to login. If your log-in sucess, you’re ready. In the post page, you can see three text fields.

Title
Name your log in this field.

URI(URL) field
URI you write in this field will automatically linked. This means this URI will wrap the article title above. If you don’t want to link your title, just leave it as “http://”.

Category field
P_BLOG is multi-categorizable. Keywords must be separated by comma.

For example:
PHP,MySQL,Web Develop,Web Application

Then you can categorize and list up the log in “PHP”, “MySQL”, “Web Develop”, and “Web Applicaiton”.

Comment
Wrapping your text with <p></p> is recommended. <p> means “Paragraph” and it breaks lines and generates spaces between paragraphs and paragraphs automatically. To generate gramatically & visually beautiful XHTML, use <p></p> instead of using many many <br />s.

GOOD Example:
<p>Your comment goes like this.</p>
<p>Your next paragraph should go like this.</p>

BAD Example:
Your commetn goes like this.<br />
<br />
<br />
Too many <br />s to make spaces (like this) is not recommended.

<p> is always better than <br />s even when your CSS is off.

If you are not familiar with coding XHTML tags, It’s OK because XHTML tags you should master to use P_BLOG are not so many, and TAG buttons will help you write.

TEXT DECORATIONS
If you want to emphasize some words, use:

  1. <em>
  2. <strong>
  3. <strong>
  4. <strong>

How to markup :
<em>Emphasize</em>
<strong>Strong</strong>
<strong>Stronger</strong>
<strong>Very Strong</strong>

Here’s how it looks :
Emphasize Strong Stronger Very Strong

How to write Hyper Link
(Level-1) Use <a> tag to markup the link. Write the target URI in href attribute.

<a href=”http://pbx.homeunix.org/p_blog/”>P_BLOG Project</a>

(Level-2) You can generate popup title by using title attriblute like this :

<a href=”http://pbx.homeunix.org/p_blog/”
title=”P_BLOG Project Official Site”>P_BLOG Project</a>

(Level-3) If you want to make external references look different from a regular link, use  ex-ref class.

<a href=”http://pbx.homeunix.org/p_blog/”
title=”P_BLOG Project Official Site”
class=”ex-ref”>P_BLOG Project</a>

QUOTATIONS
To quote, use <blockquote>tag. Here’s an example.

<blockquote cite=”http://pbx.homeunix.org/p_blog/”>
<p>Quote from P_BLOG Project Website.</p>
</blockquote>

Notice that the URI in cite attribute will be converted to anchor link automatically.

How To Write Computer Keys
Use <kbd> element to define computer keyboards. To emphazie a specific key, use. Here’s an example :

<kbd>shift</kbd>
<kbd>option</kbd>
<kbd>command</kbd>
+
<kbd>S</kbd>

SEE ALSO :
Text decoration classes are defined in text_decorations.css, and some P_BLOG’s CSS classes are based on and compatible with the classes defined in Mozilla.org’s Markup Reference :

mozilla.org Markup Reference

Uploading files
With this choose file forms, you can upload images, files with your log. Files will be stocked in “resources” folder, not in MySQL, so remember it when you write the file path.

Image Path Example:

<img src=”./resources/my_image.png” width=”100″ height=”20″ alt=”Image” />

You can inclease or declease the max value of upload files in Preferences Page. (Default is “3”)

Simple & W3C-Valid Log System