PHP
This Category contains articles and blogs which have to do with PHP.
I have been so quiet lately and I feel bad to ignoring you all so I thought about sharing with you a couple of screen shots from the main project I have been working on. This is a Shopping Cart which will hopefully be online some time soon. The client side was done in PHP. Server side is in C#. I'm thinking of doing the client side with C# too eventually, to be sold as a whole package since originally this was a college assignment. Here goes screenshot from client side: Would appreciate it if I could...
Posted On Monday, January 19, 2009 11:52 AM | Feedback (1)
When declaring sessions in PHP, you need to declare it on the very fist line of the php file, with no spaces before it. Therefore, this means it has to be even before the DOCTYPE if you are making use of html in the same page. The code to write is the following: <? session_start(); ?> With this code, you are now able to create sessions, read from sessions, check if a session is existing or not, and to destroy sessions...
Posted On Monday, December 22, 2008 9:56 PM | Feedback (0)