Posted by Daniel Dumas on September 23, 2008 :: 271 views :: 1 Comment »
Now that you know the basic syntax of PHP, let me congratulate you, congrats! hehe. . You are now ready to learn your very first PHP script.
consider this example on embedding your first PHP script into HTML.
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<!-- This is how you print output in PHP-->
<h2><?php echo "Philippines is a beautiful country!"; ?></h2>
</body>
</html>
copy and save this to your text editor with a .php extension then run it on your localhost.. 
Share and Bookmark this Post..
Posted by Daniel Dumas on September 23, 2008 :: 672 views :: No Comments »
PHP syntax is very simple it has 3 main parts, the first part is the php opening tag which is <?php, after that is your PHP CODE then the last part is the php closing tag which is ?>
it looks like this..
<?php
. . . . . . . . . . . . . . . . . . . . . .
YOUR PHP CODE HERE
. . . . . . . . . . . . . . . . . . . . . .
?>
you can also use the PHP Short open tags:
<? ?>
<?= ?>
but this is considered a bad habit.. you can use this tags but be sure that short open tag is set to on in your PHP.INI file.

Share and Bookmark this Post..
Posted by Daniel Dumas on September 21, 2008 :: 801 views :: 1 Comment »
Now that you have a little background about PHP, let’s now talk about the tools/software that you need in this lesson.
WHAT DO YOU NEED…
- A Web Server - Apache / IIS will work too..
- PHP - so that our web server can understand our php file.
- Database - MySQL
- Text Editor - Notepad, Dreamweaver, PHP Designer or any text editor that you want..
- Web Browser - you can use any broswer of your choice(Firefox, IE, SAFARI, OPERA, Chrome)..
- Operating System - Linux, Windows or Mac OS.

Share and Bookmark this Post..
Posted by Daniel Dumas on September 21, 2008 :: 696 views :: 1 Comment »
Hello this is the first part of the PHP and MySQL basic tutorial here in my blog. if you have any questions or other concerns feel free to leave a comment or contact me through my contact page. okey before we go deep in learning the PHP langauge. lets first define what php is..

Share and Bookmark this Post..
Posted by Daniel Dumas on September 20, 2008 :: 608 views :: No Comments »
Hello guys today i am going to start my basic PHP tutorial. i will give examples in every part of this tutorial so that you can follow with me easily. my aim in this tutorial is to share my knowledge in PHP to anyone specially to my blog readers who wants to learn the basics of PHP. i will focus on the very basic of PHP so that anyone can follow along even if you dont have any background in PHP or any other programming language 
Share and Bookmark this Post..
Posted by Daniel Dumas on September 17, 2008 :: 7,480 views :: 6 Comments »
I just found out this morning that friendster blog is now wordpress powered wahhh dyosmiyo marimar malayo na talaga ako sa pagunlad at sibilisasyon ngayon ko lang nalaman eh hehe. . i deleted my friendster blog before, i think that was a year ago already, because i simply didnt like it. . but its ok now for me, i just created again my friendster blog hihi you can visit it here http://mrnightman.blog.friendster.com/ thanks to Eligio of.. 
Share and Bookmark this Post..
Posted by Daniel Dumas on September 15, 2008 :: 3,178 views :: 11 Comments »
Hi everyone today im going to start my tips / tutorials in web development, and i will focus today on separating a stylesheet for different browsers. if you read my last post i talked about separating my blog style sheet using php because IE6(Internet Explorer 6.0) handled my layout differently than version 7.0 and other browser like Firefox, Opera, Safari and Google Chrome. actually the only problem that i encountered with IE6 is its incompatibility to render transparent .PNG images and some spacing issues, the 
Share and Bookmark this Post..
Tags: Browser, CSS, PHP, Tutorials, web design | Posted in: CSS, PHP, SEO, Tips and Tutorials, blogging, web design, wordpress
Posted by Daniel Dumas on September 10, 2008 :: 808 views :: 12 Comments »
haaaaaaaaaahhhhhh ok its 8.22 in the morning now and still my eyes is widely open. .huhu kaasar kasi kagabi eh anong oras na akong nagising 7pm na ata yun waaahhhh ofcourse cno ba naman ang aantokin ngayon. . wahihi natatanga nanaman ako. .ayos lang blog ko to nasa akin ang awtoridad kung anu man ilagay ko dito. .teka awtoridad ? yeah men pachizburger ka gusto ko jolibee ah..hihihi. .okey kwento ulit. .well what i did sa aking pagkamulat mula pa kagabi is ayun inatupag ang pagdesign nitong blog ko sa IE6. 
Share and Bookmark this Post..