Hướng dẫn php code for print bill - code php in hóa đơn

How I can print bill from web application ?. the web design by HTML,PHP,and MYSQL .

in below , the PHP code print the result in web page , I want to print the result as hard copy . so what I do ?

while[$row = mysql_fetch_array[$result]]{ 
                echo " ";
                echo "
"; echo "
"; echo $row['finame']; echo "
"; echo "
"; echo $row['scname']; echo "
"; echo "
"; echo $row['file_id']; echo "
"; echo "
"; echo $row['na_id']; echo "
" ; echo "
" ; echo $row['phone']; echo "
"; echo "
" ; echo $row['sex']; echo "
" ; echo "
" ; echo $row['placeOfBirth']; echo "
"; echo "
"; echo $row['birthday

asked Mar 14, 2015 at 18:43

5

See the fiddle

Use





@media print{
    *{display:none;}
    .print{display:block;}
}



This is not printed

Bài Viết Liên Quan

Chủ Đề