Add image to Java – Jframe

Thursday, August 25, 2011

I am really having fun reading articles that gives me more information. I am looking for a reference that would really fit my interest and idea and can able to give me some steps on how to create and add image to a Java Jframe. I find this website when I am searching over the internet. Which has a title of Online Programming Tutorials. This website compose of different articles about different programming languages such as PHP, Coldfusion, Javascript, CSS, HTML, C and C++ and even Java. Online Programming Tutorials is one of the most helpful website and a tool that could really gives you more information and idea. A side from that all the topics and tutorials are all explain very well plus there are some steps that given by the author just to understand and follow it more easily and appropriately.

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)

Student Management System - PHP

Wednesday, February 16, 2011 · Posted in

This is one of my new creation which is the Student Management System using the PHP language. This is our project during our System and Analysis and Design. Together with my group Ms. Shinette V. Jamora, Mr. Dave Angelo Gutierrez and myself made and design the concept of this system. Here is a sample login design of the system.



We also choose to have the mySql database to be the back-end database of the system. As of now we are trying to make the design of the system to be compatible with different types of browser including the IE8. Actually the design is currently under testing stage.
We also use jQuery in this system, CSS also and a little bit of scripting languages. In making and coding also we use our own coding standard we create a mini MVC or Model View Controller framework in order for us to make the coding more easier and faster, because we only have 2 months to finish this including already the planning, designing, data gathering, testing and debugging and then the final defense for the finale.

Home interface is being shown below:


N-Viro International Corporation

Friday, March 26, 2010


Being bothered, because of your waste and garbage’s? Don’t know what to do with it? Then I have a better solution for you and I know that it can really help you most or even through out to your whole life and even the coming generation of yours.


Well there were so many ways on how to dispose our waste and garbage but do you know that in our waste and garbage we can produce an alternative energy or either a waste to energy or renewable energy. Not only that but also we can produce opportunity fuels and even clean coal. Amazing right? Well there is only a company that offer that kind of services and that is the N-Viro International Corporation. So don’t bother anymore your garbage and waste but think of this better solution in which it can help you most and especially can help to save our Mother Nature and earth. So visit now their website by just click the given link in this article.


http://www.nviro.com




PHP - Online Enrollment System

Thursday, March 25, 2010 · Posted in

Finally I made to graduate in our PE. 2 years I've waited for this moment. Now I am so very happy, through this I can made now to focus on some of my subjects such as the major subjects especially now that I am now in 3rd year college and it is really expected that when you came upon this level there were so many projects to be done and to be given by your instructors or teacher. But now I am focus on making my web application or should I say my ONLINE ENROLLMENT SYSTEM rather, I use the PHP or the PHP Hypertext Preprocessor language. Actually learning PHP is really fun and amazing. But in contrary I am also studying CFM or Coldfusion and also fusebok which is use for coldfusion framework to read your codes easily and more organize rather than coding it manually.

I'll show a sample output and screenshot of my system and I do hope that you will drop some comments if I do have enhance it color or etc. This is the login page.


and this is some of its functions and interfaces, actually this is the admin page which the admin has all the access of all the accounts of the employee.



Hope you will drop some comments about this system whether is there something that I have to change.
If you were interested with my post or you want me to help you even though a little in your project then just
dropped a comment and your contact email or your yahoo messenger ID.

Welcome 2nd SemEster 2009-2010

Friday, November 06, 2009 · Posted in

This is another semester for another learning. Last semester I really learn a lot from my different subjects and also from my different teachers. I never expected that I can learn so much from them, especially in the the subject WEB Development in which it really taught me a lot on how to create a website and also on how to implement it using the php mysql.

This semester I am going to do my best in order for me to learn another knowledge in which could help me to become a better person and man in the future.

Powered by Blogger.