Archive for July 2011

Scrubs made of high quality fabric

Saturday, July 30, 2011

Accesories, jackets, scrubs pants, uniform, nursing uniforms, scrub tops, nursing scrubs and etc., are what men and women loves. They said age does not matter when it comes to fashion. Everyone loves fashion whether you are a man or woman or even children can also have their own fashion in fact. Yes, this is what we are looking for but the problems are where to buy cheap scrubs this items in just a cheap price and most of all we can assure of its quality. It is better that we have to choose the best store where we can purchase this item which has a good quality and can be use for a long period of time.

Employess, students aslo love this due to the fact that it can be use in office or in school either. Scrub is one of the best to wear it feels comfortable. But we have first to look for the two aspect before we can buy which are how much each items cost? and the quality of this scrubs, Could it be last for a long period of time? Well, many items such as this kind of items that we are looking for can be easily found via the internet. We do not have to go to mall just to buy this things we want.

There is a site that offer and sale different type of scrubs from scrubs to uniform. Best suite for male or female, young or old. You can checkout or visit the website by just simply clicking the link given in this article and you will be redirected to their site. I can assure you that they made scrubs with high quality because, their scrubd are made with high quality fabric. So try now and inquire about their services and item offered for only low prices which can help you save money. Try to visit their site by simply clicking this link, http://www.blueskyscrubs.com/categories/Scrubs/Scrubs-for-Women/ God bless and thank you.

How to declare variable in Coldfusion

Friday, July 29, 2011 · Posted in

In this tutorial, we will know the basic of how to declare a variable using Coldfusion web programming language. One of the first step in learning Coldfusion is to know on how to declare its variable and what are the syntax to avoid error in execution of the program.

Sample Declaration:

#firstname# = “John larry”;
#middlename# = “Abellanosa”;
#lastname# = “Limbo”;

This is the basic on how to declare a variable in Coldusion (CFM). Coldfusion uses the number sign (#) to declare its variable. In declaring variable in Coldfusion do not for get to put the number sign (#) in the beginning ang in the end to avoid syntax error.

If there are some comments or questions about this article just CLICK THIS LINK to be redirected to the forum page.



» More Articles can be found in this site. Click Here

How to add two numbers using PHP

· Posted in ,

In this tutorial, we will know how to add two numbers using PHP. PHP can also perform arithmetic and can be use to solve mathematical equations. Sample problem is the given problem below which ask the user to input two numbers and get the sum of the two numbers.

Problem:
Write a program that will ask the user to input to numbers. Then the program must computer the sum of the two numbers and display.

Code:
<html>
<head>
<title>Title goes here</title>
</head>
<body>

<form action="" method="post">
<label>Enter Num1:</label>
<input type="text" name="num1" /><br>
<label>Enter Num2:</label>
<input type="text" name="num2" /><br><br>
<input type="submit" name="btn_submit" value="Add">
</form>

<?php
if(isset($_POST['btn_submit']))
{
$num1 = $_POST['num1'];
$num2 = $_POST['num2'];

$total = $num1+$num2;

echo "The total value is: ".$total;
}
?>


</body>
</html>
Explanation:

The program allow the user to input two numbers as stated on the problem above. The program provide user to input field which has a name of num1 and num2. When the user click the submit button the program will going to execute the PHP scripts below. PHP script first execute the condition if to determine whether the use had click the button or none. When the condition returns true then the following lines of code will be execute. The value from the form text field that has a name of num1 and num2 will be stored in a temporary variable which is the $num1 and $num2. Then, the next line of code wil be executed in which perform the adding of the two numbers and stored the sum in the variable named $total. To finish with the last line of script will be executed which display the total of the two numbers adn we use the variable total which contains the sum value of the two numbers. Below is the sample output from the given codes above.

Sample Output:

If there are some comments or questions about this article just CLICK THIS LINK to be redirected to the forum page.



» More Articles can be found in this site. Click Here

How to declare a variable in PHP

Thursday, July 28, 2011 · Posted in

It is one of the most common error of a programmer in PHP which is on how to declare a variable. Every programming language recquires varaiable declaration because variables are being use to store your temporary data. Sometimes programmers for got and sometimes failed to declare a variable in which it causes an error to their programs. The dollar sign symbol ($) uses to declare a variable in PHP. In other web programming language such as Coldfusion it uses double number sign (##). For PHP case $ is the only one that being use to declare a variable and no other than. Below is the sample of variable declaration and together with its output.


PHP Code:

<?php
$firstname = "John Larry Limbo";
$middlename = "Abellanosa";
$lastname = "Limbo";

echo "My firstname is: ".$firstname."<br/>";
echo "My middlename is: ".$middlename."<br/>";
echo "My lastname is: ".$lastname;
?>

Dont for get to put the php opening ang closing tags before you run the code cause it might cause an error on your program. As you notice I use dot(.) on my code. The function of this dot is to concatenate the string “ My firstname is: ” with the value of the variable $firstname and same with the other. Observe carefully the ouput below or you may try it with your own. Just send me a comment if the code does not run or it returns an error.


Sample ouput:


If there are some comments or questions about this article just CLICK THIS LINK to be redirected to the forum page.



» More Articles can be found in this site. Click Here

Moodle 2.0 Customizing - ELMS

Monday, July 25, 2011 · Posted in

During my OJT here in school, I am customizing moodle 2.0 so that we can have a new version of our elearning due to the fact that if we were going to update the old elearning we will consume more time because we have to code it again or should I say that we have to begin again with scratch. But my boss told me about the Moodle technology in which it is the easier way. Though the old version of our Elearning Management tool is Coldfusion but it is not a hindrance for not doing and using the Moodle. Below are some screenshot of the new elearning that I have made.


Shot 1 (Index Page)



Shot 2 (Login Page)


Shot 3 (Course List with enrollment key for student)

Powered by Blogger.