Category Archives: Blogs

Here are some tips to ensure your email will not end up getting blocked by spam filters. provide a ways to remove themselves from your mailing list when yousend your email newsletters. like a link to a page that will unsubscribe the user when they click it. avoid sending large images, attachments. you need to [...]

What is JSON? JSON, or JavaScript Object Notation, has been getting a large amount of attention recently in the IT world. This is mostly powered by its extremely lightweight implementation, its common usage in API responses, and its already native support in JavaScript. How does it work? JSON is capable of setting up data constructs [...]

You can use the fopen to read a plain text or even a binary file. in this sample code, we will use the fopen to read CSV a file. $fname = “file/contacts.csv”;//change this to actual path $row = 0; $handle = fopen (“csv/”.$fname,”r”); while ($data = fgetcsv ($handle, 1000, “,”)) { echo $data[0];//field 1 echo [...]

Introduction HTML5 is the newest specification for HTML, the language that web browsers read to display web pages. HTML5 has many new features intended to make creating websites easier and people’s experience in using those websites better. Among those features are many enhancements to web forms. Since HTML5 is fairly new and not all the [...]

Your Quick HTML Tag Reference from WebExpertsConsulting.com   HTML Basic Document <html> <head> <title>Title of document goes here</title> </head> <body> Visible text goes here… </body> </html> Heading Elements <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6> Text Elements <p>This [...]

No wonder why MYSQL is so popular and the most preferred Database for Developers and Small Companies, Because its Free and Open-source. Now you want to use it for your Java Application. There’s a lot of tutorials you can find when you search it on search engines, But still I had spent an ample time [...]

I’ve encountered a lot of questions about how to display Multi-byte (non Latin) characters such as Japanese, Korean Chinese Characters. I’d like to share you this solution to save your time fixing this problem. the most basic solution here is to make sure you set your character encoding to UTF-8 in all areas of your [...]

Making money with a website not only requires very little initial investment, it can be an extremely profitable venture as well. From blogging to affiliate marketing to actually selling your own products or even just running advertising on your site, even beginners with little or no experience can make money with a website if they [...]