Search found 345 matches

by Helx
Sat Jun 23, 2012 11:55 pm
Forum: Tutorials
Topic: Help - Make a RSS Feed Reader for Blogger....
Replies: 3
Views: 807

Re: Help - Make a RSS Feed Reader for Blogger....

Look at the error, then the line its on...
And maybe search it on Google / PHP.net
(I have no idea how to help because I've not worked with RSS)
by Helx
Thu Jun 21, 2012 6:12 am
Forum: PHP
Topic: Echo logged in username
Replies: 6
Views: 1059

Re: Echo logged in username

janvier123 wrote:Why would you MD5 a email? This makes no sens to me, untill you have 80.000 CPU hours to decode the md5, this is kinda useless
(Google MD5 Hacked)


Like I said, I'm likely to change this.

I get really paranoid sometimes...
by Helx
Wed Jun 20, 2012 11:37 am
Forum: PHP
Topic: Echo logged in username
Replies: 6
Views: 1059

Re: Echo logged in username

jacek wrote:Well fist thing, replace those session_register() functions with the use of $_SESSION as detailed here http://php.net/manual/en/function.session-register.php


Oh hehe, deprecation is a b**** :lol: explains why the login wouldn't work on my main host.

As always, worked like a charm. :)
Thanks :]
by Helx
Wed Jun 20, 2012 11:26 am
Forum: Code
Topic: Minecraft Player Face Rendering
Replies: 19
Views: 10110

Re: Minecraft Player Face Rendering

jacek wrote:You would just need to change the player_name so the name of the player you want. ;)


Ah, thanks :)
by Helx
Wed Jun 20, 2012 11:01 am
Forum: Suggestions
Topic: Some cool stuff to your login series.
Replies: 1
Views: 1596

Re: Some cool stuff to your login series.

Its kinda cheating, but there is a system already on the internet :D

If you want to have a look at it its here: http://sourceforge.net/projects/phploginsystemw/
by Helx
Wed Jun 20, 2012 9:52 am
Forum: PHP
Topic: Main menu
Replies: 3
Views: 536

Re: Main menu

I would just use an include(); system, and make a file for what you want in the header, repeat with the footer, and include :)
by Helx
Wed Jun 20, 2012 9:17 am
Forum: PHP
Topic: Echo logged in username
Replies: 6
Views: 1059

Echo logged in username

Ok, here goes I have the following PHP code: [syntax=php]<?php include('core/conf.php'); $user=$_POST['user']; $password=$_POST['password']; $user = stripslashes($user); $password = stripslashes($password); $user = mysql_real_escape_string($user); $password = mysql_real_escape_string($password); $en...
by Helx
Wed Jun 20, 2012 9:02 am
Forum: Code
Topic: Minecraft Player Face Rendering
Replies: 19
Views: 10110

Re: Minecraft Player Face Rendering

How would I use this in a MineQuery player list (like massivecraft.com)?

Sorry, I've just never used this kind of thing with an array :P
by Helx
Thu May 17, 2012 6:49 am
Forum: Tutorials
Topic: Minequery tutorial help
Replies: 13
Views: 3202

Re: Minequery tutorial help

Change the port in config.inc.php from 25565 to 25566, this is the default MineQuery port :)

[syntax=php]$config['server']['port'] = '25566';[/syntax]