Archive for September 5, 2006

Any minithesis to all my Friends

Fiewwh….

Many days ago, my friend who studing in a university which concern in Computer and Technology in Yogyakarta ask me, “Hi gun, what is good theme for my thesis”.

Aha…

My friend think that i can answer his question, of course,…. No i cannot… :D
Btw, after thinking about his question i’m searching any pages which content any technology research, and every page always prepare and present about article that i don’t understand. Deply, very very don’t understand :D ( How stupid i am )

Thinking again, i’m only know about PHP ( look at here , i’m very stupid, aren’t me? ).
But, i remembered that PHP can do everything with your PC nad network, so i try to investigate it, and what i think came true. I found many themes that perhaps good for him.

And here are the themes:

  1. Mengelola file kompresi pada website (Compress file management on website)
  2. Mengelola database master dan slave serta pengaruhnya terhadap kinerja website dengan PHP dan API MySQLi . ( Master and slave database management and effect on website performance use PHP and MySQLi API )
  3. Pengaruh mirror terhadap pelayanan XML website. ( Mirror effect towards XML website serving )

OK, now only three themes for your minithesis, I will update any idea soon.
Do you interest ? ( I hope no ) if yes just write in comment. Hehehe…

Leave a Comment

Between “Switch else PHP” and “Choose otherwise XSLT”

Hi, Still know this switch control on PHP programming?
switch($var){
case $var="" : PHP statement ; break;
case $var="" : PHP statement ; break;
default : other PHP statement ; break;
}

Let’s equal it with XSLTransformer <XSLT:CHOOSE>
Check it out.!
<!-- Estimate that you are in a XML tag data -->
<xsl:choose >
<xsl:when test = "xml:value" >
XHTML statement
</xsl:when>
<xsl:when test = "xml:value" >
XHTML statement
</xsl:when>
<xsl:otherwise >
Other XHTML statement
</xsl:otherwise>
</xsl:choose>

Huehuehue…, Can you find the same thing between them..?
Actually, it’s not too hard to find the same thing, especially for a good programmer.

Yea, You’re right, the same thing what i mean, is structure, cos’ these programms use logicaly control by event on one statement which give another statement. ( do you what i mean..? ) I hope… :D
So, what are diferent if we use <xsl:if> ..?
Hahaha, I thing you are better than me to answered this.
Please tell me.

O ya… what i have been written may be wrong, please correct me too, cos i’m in learn about that.. :D

Leave a Comment