Live Demo Here! Screenshots: LanWall is a PHP-based project for creating community among users connected in a Local Area Network (LAN). Users can post messages in the wall and make replies. In administrative mode, admin can modify comments & posts, ban certain IPs, restrict access or reset anything. Pros: Requires no database! You do not […]
Monthly Archives: November 2010
What you’re looking for is lastrowid property of a cursor object. Code: Thanks to this article on the Internet
Are you trying to access any object’s property (variables/functions) using: $this->$property ? Check out the red $ should not appear before object properties. In contrast: the above code segment is wrong. You should use $ only once – before ‘ this’ only. No need to use $ sign before class variables or methods. Correct version […]
A for loop in C/C++/PHP/Java Or many well-known programming language will appear as: Python has no C-style for loop, which is has is for in loop like foreach loop available in PHP. To achive the same goal as the code snippet written in C above, we may write following code in python:
This is a pretty common error appearing in the Apache servers… along with the disgusting Error 500 – Internal server error on the browser. Usually the error indicates that it was unable to send necessary header information correctly. What makes the problem terrible – it does not explain much of the cause. The best way […]