Posted by
admin on
Aug 31st, 2009 |
1 comment
This is a follow post to my previous post regarding the use of meta tag data to increase web popularity and the effects within top search engines.
I am only 18 days into the case study but things seem to be going well, one indication is the increase in my Alexa rank, from day 1 where tommycraig.com was not even ranked to hitting ranks of approx. 13,000,000 to my new ranking of 5,381,989 and this is...
Posted by
admin on
Aug 24th, 2009 |
no comments
Sliding menus are very effective in areas where we have limited space .
This is a sliding top menu built with JQuery which can be fired through the open & close buttons or with any tag with the related class name.
You can also use it as an info box, login area & more.
Below is the code that makes it happen:
<script type="text/javascript">
$(document).ready(function()...
Posted by
admin on
Aug 17th, 2009 |
6 comments
SQL Injection attacks are one of the easiest ways to hack into a website. One recent hack, using a script from verynx.cn, involves injecting SQL into a web form that then appends some JavaScript code into fields in a database that then gets executed on the client side when a user views a database-driven page. To learn more about this hack, go to this link.
If you’re using ColdFusion, to harden...
Posted by
admin on
Aug 3rd, 2009 |
2 comments
ColdFusion’s cfqueryparam tag is important for several reasons, most notably data type validation, improved query performance, and foiling SQL injection attacks.
A basic example of cfqueryparam in use is as follows:
<cfquery datasource=”yourdsn”>
SELECT
column1
, column2
, column 3
FROM
yourtable
WHERE
column1...