-7

I'm looking for a php script/system that can let users login/register, post links, vote on links. Are there any open source project doing that?

I'm looking for something similar like reddit.com or dzone.com.

Cheers.

Ryan
  • 2,825
  • 9
  • 36
  • 58

1 Answers1

3

As per Zerkms's request.

"Are there any open source project doing that?" - Yes

On a more serious note, here is a list of some of the (script) resources which have helped me in the past. You will find many good and free scripts that will get you up and going with your project.

and an mysqli method: http://w3epic.com/php-mysql-login-system-a-super-simple-tutorial/

However in the link just above, where they have:

$username = $_POST['username'];

I would make it as:

$username = mysqli_real_escape_string($mysqli,$_POST['username']);

etc. (just to be on the safe side)

There are a few links that are a good read, in regards to security that I feel you should also be made aware of when putting something together as such:

Plus, do use the latest password technology and not storing them as plain text like many do today.

Always hash (and salt) passwords, not encrypt; remember that.

Community
  • 1
  • 1
Funk Forty Niner
  • 74,450
  • 15
  • 68
  • 141
  • can you provide the link? – Ryan Feb 20 '14 at 02:22
  • The question was closed with a mix of being too broad a question, or asking for a tool/library and those are pretty much off-limit here. This type of question consists of many different pieces of code put together, PHP, HTML, MySQL and the list goes on. You just need to really Google the the words you've put in your question and it will yield many results, I can guarantee it. @Ryan – Funk Forty Niner Feb 20 '14 at 02:25
  • On a more serious note, I added a few websites in my answer that have proved extremely useful to me in the past, I now code everything by hand now, so I rarely go there anymore. @Ryan – Funk Forty Niner Feb 20 '14 at 02:31
  • And this one looks promising http://w3epic.com/php-mysql-login-system-a-super-simple-tutorial/ which has also been listed in my answer. I hope it all helps as much as they have for me. @Ryan – Funk Forty Niner Feb 20 '14 at 02:45