No one would ever write a fully functional CMS for free to anyone - in this forum at least. Also, if you're going to code, atleast use a better editor like Sublime Text 2/3.
Of course you can. If you make your own backend (housekeeping) read about permission systems with MySQL (if you're using that).
I believe no one will give you a direct answer, as it is quite easy to find on the internet.
The mysql extension is deprecated. Short story; This CMS is not secure.
Long story;
The CMS is using old mysql functions to connect and retrieve data from the database, which is deprecated (they will be removed in future versions of PHP). I really recommend you to find a CMS that uses proper...
First off why do you use VARCHAR for an article content? Use TEXT as it can hold any length of characters and also better for memory (since varchar requires a predefined length) (+ the name is non-descriptive).
Second; Dump your cms_comments table structure so we can see it. Without it, we...
Learning really depends on people. Some people - like me - can watch a video and/or read a small tutorial or other open-source projects to understand the idea of the language. Then there's people - like a good friend of mine - who read a whole book and then know the whole aspect of a language...
I use CSS hat and have used it in a long time. Mostly for small elements like button-, textarea and other control styles. No doubt it does a fine job - And does also provide mixins for LESS with a lot of cool mixins to make your CSS/LESS cleaner.
I recommend you to buy this along with Enigma...
Saw the whole thing, and I'm glad I pre-ordred the game along with Watch Dogs. Can't wait for this, so much detail and much more to do than the earlier titles.
I wish however for the future, until they release gameplay of the online game, that it doesn't totally suck like the GTA IV did.
If you're using Google Chrome or Safari, you have Developer Tools. Use them. Right click on the element and see what class it uses. You can in the right side see the CSS for that class style too. You can change it there to see what it's going to look like and copy the code into your CSS file...
Your remote IP address is NOT 192.168.1.65. You have to go in to www.whatismyip.com to get your remote IP address and test against that. This is also the IP you have to share to people you wan't to join your Minecraft server - not 192.168.*.* one.
Not true. Anyone who's on your network, knows your computer by this IP. It's an internal IP address. But it is true, that people that is not connected to your network only can connect using you external IP (remote address).
To get your remote IP address, you can use WhatIsMyIP as Weed suggested.
if and switch are different statements. The switch can meet one condition and goes through all cases until the condition is met. If statements can meet multiple conditions which need to be met and you have the possibility of doing something else, if the first conditions isn't met.
It depends...
To be more descriptive as a normal forum would be here goes;
I am mainly working with UI/UX design and front-end development. I have worked with this in 6 years now. I also enjoy getting my fingers dirty in back-end stuff but I like that you can show something visual to users, without they...
While this is a cheap and easy way of setting up your own web server, it is not likely to handle 1000s of concurrent connections. This isn't a stack for sites that you expect a high amount of traffic.