Today has been a productive day for my blog and mi knowledge about it. I should be studying for Circuits or doing my Lionbridge exam but I am here.
Today I finished many thing, I made you a list with the percent of working:
- Home 100%
- News 90%
- Categories 100%
- Comments 90%
- Recommend us 100%
- News file 100%
- Profile 100%
- Curriculum 0%
- Links 50%
- Contact 5%
- Search 5%
- Login 0%
- Shop 0%
- Calendary 0%
All that have more tan 80% already work and can be used by you. Like you see i add new Project to implement in my blog, all to trying.
I can say that i have the better codification that i ever made, but it still have details to fix.
The webpage will be and is until this moment 100% friendly.
I been having troubles with PandaSux with some mischievous that believe that put frames is make Hack to a website. I implement a protection of the use of HTML codeo n my comments.
I hope all is of your like.
What if friendly?
Is dont have this http://www.zseven.net/news.php?id=1 have this http://www.zseven.net/news/Welcome
What is iframe?
Read a HTML manual, is like a window in another window..
How can I protect my data base in a simple way?
In a simple way you can substitute all the characters that use in HTML and PHP like “<” and “>”. It substitute will be “”. Example of the code:
function myprotection($texttoedit){
$substituteto=array("&", "<", ">");
$substitute=array("", "", "");
return str_replace($substituteto, $substitute, $texttoedit);
}
I hope that be useful.