now http://pamagester.com/ works I see your green page under contruction
but http://www.pamagester.com/ doesnt work, show "404 - Not Found"
lol its weird
Edit:
do you have Parked the domain???
try this, write whatever you want on .htaccess and save and then enter to your page again, if you get "Internal Server Error" mean the .htaccess file its work... what is your web???
Use %s not %$, do you have the NumX fields as INT in the table??
if it is remember that you dont have to use ' the simple quote for number fields
other thing is if the data of variable is only string use %s if it is number use %d
never use variables into string:
echo "this is a $variable";
use it like this:
echo "this is a " . $variable;
or
printf("this is a %s", $variable);
use the function sprintf() for multiple variables, you can do it just try it...