Posts Tagged ‘php’

Web Development using PHP Course

Post by: bingorabbit
Published on November 17th, 2009
Filed under: information.technology,linux,php,web
Tags: , , ,

Hello all,

I will be launching a Web Development Course soon. The course aims to give a general overview on PHP the scripting language and how to integrate it with MySQL database to create web applications. The course will develop in the attendees the web programming concept and the knowledge of the web scenario and how to efficiently program dynamic web pages to complete web sites. The course will include the following: (more…)


 

7 Google Wave Extensions I use

Post by: bingorabbit
Published on November 13th, 2009
Filed under: Google,in.words,information.technology,my.reviews,php,Twitter,web
Tags: , , , , , , , , ,

PS: There is a double Bonus! gift at the end of the post, so keep reading it till the end :)

After I received my Google Wave account, I started exploring the service and I’m really impressed of how those guys got this thing to life and started to think of how this service might change the web and online communication specially. I dug around and knew that there are even extension for this great service and I thought of sharing you with some extensions I use. It will be also great if you got one extension that is not listed here, to share us with it so we can discuss them.

(more…)


 

Just before it ends

Post by: bingorabbit
Published on December 21st, 2008
Filed under: depiak,dreams,in.words,web
Tags: , , ,

Mostly, I will be busy to blog anything in the upcoming days, the last activity for me this year and this semester was done today, al-7amdolelah it went just fine. I had a session in Faculty of Computers and Information today, held by depiak, titled “PHP in Action”. It was an introductory session for PHP and the web development track. It was supposed to be a live coding session, but I enjoyed talking to the audience a lot till I had no time to actually code the application we were supposed to code. The session didn’t talk about php only which is a good thing, we went into many topics, like linux and the open source concept, and what really relaxed me that the audience liked it and didn’t get bored of the off-topic discussions :) .

(more…)


 

Status Report-04

Post by: bingorabbit
Published on July 17th, 2008
Filed under: college,depiak,dreams,linux,php,WordPress
Tags: , , , , , , ,

ICU, My Grandpa, Family! Al-7amdolelah

2008-07-17 :) , wemabre7 kan 3omry 20 :)

I’m waiting for my results..

I will be having an interview after ummmm 5 hours?&!

depiak, good work and a great comeback!

I love Linux!! – Mosh awy -

WordPress 2.6, again, they always impresses me!

(more…)


 

parameters with default values

Post by: bingorabbit
Published on June 11th, 2008
Filed under: information.technology,linux,my.hacks,php,web
Tags: , , , ,

It’s known that declaring a php function has the following syntax:

< ?php
function function_name(Parameters_list) {
// function
// code
// block
}
?>

an example of this can be like this:

< ?php
function nameAndAge($name,$age){
echo "Welcome $name, you are $age years old!";
}
?>

When I issue the following statement:

< ?php
nameAndAge("bingorabbit",20);
?>

I will get:
Welcome bingorabbit, you are 20 years old!

Most of us know that, and also we know that to set a default value for any parameter, we can do the following:

< ?php
function function_name($parameter1 = "default value", rest_of_the_parameter_list) {
// function
// code
// block
}
?>

which might take the following form:

< ?php
function nameAndAge($name="bingorabbit",$age){
echo "Welcome $name, you are $age years old!";
}
?>

so when I issue:

< ?php
nameAndAge();
?>

I will get:
Welcome bingorabbit, you are years old!

and when I issue:

< ?php
nameAndAge("Ahmed", 15);
?>

I will get:
Welcome Ahmed, you are 15 years old!

The problems is such declaration is that, you can’t just issue:
(more…)