Posts Tagged ‘Tips and Tutorials’
Friday, October 31st, 2008
Internet Explorer conditional statement or CSS Conditional statements is a bit of code specially made for Internet Explorer browers which instructs ie browser to perform specific instructions only for internet explorer browser, only windows platform supports ie conditional statements.
the basic structure or syntax of conditional statements is just.. (more…)
Tags: Browser, CSS, Tips and Tutorials, web design
Posted in CSS, Tips and Tutorials | 13 Comments »
Thursday, October 30th, 2008
Weeee my blog is now a do follow blog thanks to lucias’ linky love do-follow plugin for wordpress this plugin is shared to me by Andy bailey the creator of Comment luv plugin. i set linky luv plugin to make links do follow after 5 comments so that my loyal commenters can benefit for sharing their ideas
actually its been a week since i found this plugin and i have seen many blog sites using these two plugins together which (more…)
Tags: SEO, Tips and Tutorials, wordpress, Wordpress Plugins
Posted in SEO, Tips and Tutorials, Wordpress Plugins, blogging | 10 Comments »
Friday, October 24th, 2008
Fatal error: Allowed memory size of …… bytes exhausted (tried to allocate …. bytes) in home/of/some/thing/fishy.php
I experienced this weird Wordpress or rather PHP error last night when trying to view my blog when i got home, at first i thought that there was a technical problem at my server so i waited, then i waited and waited and waited again for almost 7 hours then i cant wait no more i want to blogggg… so i contact my hosting provider and they told me that there is nothing wrong with the server nahhh WTF! i told to my self. .
(more…)
Tags: blogging, PHP, PHP Tutorials, Tips and Tutorials, wordpress
Posted in PHP, PHP Tutorials, Tips and Tutorials, Wordpress Plugins, blogging, kwento lang, wordpress | 8 Comments »
Tuesday, September 23rd, 2008
For greater readability of your PHP code, you should add comments to it, so that you or other people who will look at the code later will understand it clearly.
To do this refer to the example below..
PHP Single Line Comment: (more…)
Tags: PHP Tutorials, Tips and Tutorials
Posted in CSS, PHP Tutorials | No Comments »
Tuesday, September 23rd, 2008
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.. (more…)
Tags: PHP Tutorials, Tips and Tutorials
Posted in PHP Tutorials | 1 Comment »
Tuesday, September 23rd, 2008
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.
(more…)
Tags: PHP Tutorials, Tips and Tutorials
Posted in PHP Tutorials | No Comments »
Sunday, September 21st, 2008
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.
(more…)
Tags: PHP Tutorials, Tips and Tutorials
Posted in PHP Tutorials, Tips and Tutorials | 1 Comment »
Sunday, September 21st, 2008
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..
(more…)
Tags: PHP Tutorials, Tips and Tutorials
Posted in PHP, PHP Tutorials, Tips and Tutorials | 1 Comment »