If you are a small business owner, using an accounting software for your small business may be your best option if you already had taken some training on accounting software through your continuing education program. If you have not, ask your accountant or an independent consultant to prepare a special computer system requirements checklist to compare your need against the price of each of the different options and then make a balanced decision.
| Posted in computers | Comments Off
Adding parameters in PHP Function
Our first function writedate() is a very simple function. It only writes a static string.
To add more functionality to a function, we can add parameters. A parameter is just like a variable.
You may have noticed the parentheses after the function name, like: writedate(). The parameters are specified inside the parentheses.
Example 1
The following example will write different first names, but the same last name:
<html>
<body>
<?php
function writeMyName($myname)
{
echo “$myname Gunawan.<br />”;
}
echo “My name is “;
writeMyName(”Johnson”);
echo “My name is “;
writeMyName(”Tony”);
echo “My name is “;
writeMyName(”Jony”);
?>
</body>
</html>
And output is
My name is Johnson Gunawan.
My name is Tony Gunawan.
My name is Jony Gunawan.
Example 2
The following function has two parameters:
<html>
<body>
<?php
function writeMyName($myname,$adding)
{
echo “$myname Gunawan $adding <br />”;
}
echo “My name is “;
writeMyName(”Johnson”,”,1st son”);
echo “My name is “;
writeMyName(”Tony”,”,2nd son”);
echo “My name is “;
writeMyName(”Jony”,”,3rd son”);
?>
</body>
</html>
and output is
My name is Johnson Gunawan ,1st son
My name is Tony Gunawan ,2nd son
My name is Jony Gunawan ,3rd son
| Posted in php basic | No Comments
As the number and severity of software-borne threats to companies continues to grow, the bottom line risks of compromised confidential data increase as well. Earlier generations of computer viruses are giving way to much more insidious threats collectively known as malware and raising the risks to brand integrity across all sectors.
| Posted in computers | Comments Off
An Order Management System (OMS) is software used by many industries to enter and manage the order processing. The OMS normally would be an integrated system supporting the order entry, order management and order delivery.
| Posted in computers | Comments Off
Many people have at one time or another started having computer errors related to the registry. However, usually they are unsure of what to look for in registry repair software. Fortunately, it is not that difficult to find good software to help. I will point out some common things to look out for to help your computer run better.
| Posted in computers | Comments Off