Posted on December 4th, 2008 by HuHe
I had been always looking for a PHP template that I can use to build my website. I am not a very experienced PHP developer, but I do have much PHP knowledge. Eventually, I came across Mambo. This is from a free source CMS project. It integrated a very good administrator interface as well as [...]
No Comments »
Filed under: Web Technology
Posted on August 22nd, 2005 by HuHe
PHP syntax: to get a value of a variable from url, like: $url = “show_cat.php?catid=”.($row["catid"]). The PHP script should be dealt with something like: $var=_REQUEST(“var”). if don’t do like this, you can’t get the value of the variable.
We can’t use reserve variable $PHP_SELF directly in PHP file, we should use $_SERVER['PHP_SELF'] instead. I think some [...]
3 Comments »
Filed under: Web Technology