Showing posts with label Programming. Show all posts
Showing posts with label Programming. Show all posts

Sunday, July 5, 2009

PHP tutorials

Taken directly from PHP's home, PHP.net, "PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly."

This is generally a good definition of PHP. However, it does contain a lot of terms you may not be used to. Another way to think of PHP is a powerful, behind the scenes scripting language that your visitors won't see!

When someone visits your PHP webpage, your web server processes the PHP code. It then sees which parts it needs to show to visitors(content and pictures) and hides the other stuff(file operations, math calculations, etc.) then translates your PHP into HTML. After the translation into HTML, it sends the webpage to your visitor's web browser.

Try this Site: http://www.tizag.com/phpT/

Saturday, April 25, 2009

Smush143 blog site

Since i know and started to write my own blog, I've always read lots of blogs. Blog sites of other people inspires me to write and post a good blog. And that's what I'm introducing now the blog site of Smush143, an interesting blog that you might want to see and read.

This blog site is personal owned by Ronard Eman, a incoming 3rd year (IT) Information Technology student from Davao City, Philippines. He is currently studying at (UIC) University of the Immaculate Conception.

Smush143 has a great interest in networking. He's also a student of (CCNA) Cisco Certified Networking Academy, the best networking academy in the world.

What i liked most on smush143 is that, most of his blog post talks about Programming subject. Also it also show the current events, latest technology, and other wonderful topics.

I love also the sayings on the upper part of smush143's banners. It says "Life is full of challenges, don't give up, instead live with it." It is very good and wonderful saying to the people who are having a problems in their life.

Try to visit smush143 blog site to read more of his blogs. Here is the blog site URL: http://smush143.wordpress.com/

Tuesday, February 10, 2009

Simple Factorial Using Recursive Function


Here is my simple Recursive Factorial Function.

#include <"iostream">
#include <"conio.h">

using namespace std;

int factorial(int f)
{
if(f==1)
return 1;
else
f = f * factorial (f-1);
return f;
}

int main()
{
int a, b;
cout<<"Enter the Number: "; cin>>a;
b = factorial(a);
cout<<"The Factorial is: "; cout<<>

Wednesday, January 28, 2009

BSIT-2B Midterm Examination Schedule:

First day of Exam:

January 8. Wednesday


Subject: Time: Room:

Physics - 8:00-10:00 AM 504 (Annex Campus)

Theology - 1:00-2:00 PM 304 (Main Campus)

Note: Please Join the free seminar about "Micro-Controler Programming" It will Start at 4:00 Pm up to 6:00 Pm at the AVR1 in the Annex Campus!

Good luck Guyz!