:: Joel Badinas dot Com

ramblings, make money online tips, programming stuffs, blogging tips, views, everyday life

?Tags for :: Joel Badinas dot Com

What's this?
Tags are super-short descriptions of people
and sites. Tags describe you and your sites
so others can easily find you. Tag people and
sites to describe them to the community and
return to them in the future.

(ex: Xbox 360, Mom, Social Media)

Latest Content

Unknown author
Displaying errors in your PHP applications by tweaking the configuration file is sometimes troublesome, especially for most beginners. Luckily, you don't have to get your hand dirty to deal with it. After installing MAMP (Mac, Apache, MySQL, PHP) in..
Topics: ,
Unknown author
If you're a programmer, aside from your favorite EDI and PL, database is one of your everyday companion. Almost all program these days uses a form of database, be it a flat file or RDBMS. Being a good programmer, it's not enough that you only...
Topics:
Unknown author
Adding date and time to your website gives it an impression of being fresh and updated regularly. In PHP, getting the current server date and time is a no brainer using the getdate() function. To add date and time, see the PHP script below. .
Topics: ,
Unknown author
A loop is a sequence of instructions that is continually repeated until a certain condition is reached. It is a fundamental programming idea that is commonly used in writing programs. Without looping in a programming language, hundreds to thousands of...
Topics: ,
Unknown author
Redirecting to another website in PHP is very simple and straightforward. Just by using the PHP header function and the the URL where to you want to redirect as a parameter, you can accomplish this task. Here's the example below. ...
Topics: ,