You are here: Daniel Dumas »

2008

PHP Operators

PHP Operators are very important, if PHP variables is the building blocks of PHP programming PHP Operators is the tool that lets you do something useful with variables. php comes with many useful operators such as Assignment Operator, Arithmetic Operator, String Operator, Comparison Operator and Logical Operator. Keep Reading…

Detecting the data type of a PHP variable

Detecting the datatype of a specific PHP variable can be done by using PHP gettype() function. refer below for example.

<?php

//define variables
$on = true;
$age = 20;
$name = "daniel";
$price = 99.99;

//Returns Boolean
echo gettype($on);

//Returns String
echo gettype($name);

//Returns Integer
echo gettype($age);

//Returns Double
echo gettype($price);

?>

Keep Reading…

Free One Way Text Link Web Directories List

Free One Way Text link Web Directories is one of the many ways to increase web traffic and ofcourse one of the great way to increase or to build backlinks of your site without spending a single dime, just effort ofcourse and what is good with this is these sites doesn’t require a reciprocal link from you. This list of Free One Way Text Link Web Directories is the one Keep Reading…

Google is indexing my blog post very fast. .

Weeeee i just noticed that google is indexing my blog post very fast :happy: my blog entry got indexed in the blog search in just minutes weeee :D hehehe nothing important i just want to share it haha. . i took a snap shot of my blog search a while ago hehe. . Keep Reading…

PHP and MySQL Basics: Saving form input in PHP variables

form can add interactivity to your site, it enables you to get information or comments from your visitors. saving a value from a form input to a php variable is very easy. refer to the example below.

Example 1: Processing forms in the same php file

Copy and Paste the code below to your text editor and save it as form.php, then run it on your localhost Keep Reading…

Do Follow Blogs List :: Blogs that follow

Hi everyone i just want to share this compilation of do-follow blogs that i personally use to get free backlinks when i comment. please read the site owners comment policy before commenting on their blog to be sure your comment will be approved. if you have a do-follow blog.. Keep Reading…

Internet Explorer (IE) or CSS Conditional Statements

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.. Keep Reading…

Comment Luv + Linky Luv = Link Love (Do Follow)

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 Keep Reading…

WordPress User Online and PostViews plugins

Wordpress Plugins

Yahoo. . i just installed another plugin from my blog its the WP-UserOnline and WP-PostViews Plugin thanks to lester of lesterchan.net for he is the creator of these wonderful plugins..

WP-UserOnline

It enables you to display your online visitors with detailed statistics of who they are and where they are in your site. visitors that can be monitored are registered users, guess and bots. for online demo of this plugin.. Keep Reading…

Fix wordpress fatal error allowed memory size exhausted

Fatal error: Allowed memory size of …… bytes exhausted (tried to allocate …. bytes) in home/of/some/thing/fishy.php :)

Wordpress Fatal Error allowed memory size exhaustedI 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. . :) Keep Reading…