استخدم الـCSS 
لتحديد الملف background-image
كود PHP:
background-image: url('file.png');
تكرار الصورة background-repeat
تكرار عمودي
كود PHP:
background-repeat:repeat-y
تكرار افقي
كود PHP:
background-repeat:repeat-x
عدم التكرار
كود PHP:
background-repeat:no-repeat
موضع الصورة background-position
يمكنك استخدام right left center top bottom
كود PHP:
background-position:right
ع صفحتكـ
كود PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="">
<style>
<!--
body { background-image: url('bgtest.png'); background-repeat:repeat-y; background-position:right }
-->
</style>
</HEAD>
<BODY >
<font color="red" type="Tahoma" >هنا المشكلة</font>
</BODY>
</HTML>