Phpfr3ak Posted October 5, 2010 Share Posted October 5, 2010 Probably real basic but im nto great with the maths aspect of php, how would i get the $level + noto to show from the php below as currently i get, From: System 4 minutes ago You have reached level 1 + 1 in Notoriety, Please check the Skill Points section to see if you now qualify for any upgrades! $sql="INSERT INTO messages (to_username,from_username,message,type, timestamp) VALUES('$playerdata[username]','System','You have reached level $level + 1 in Notoriety, Please check the Skill Points section to see if you now qualify for any upgrades!','Player', NOW())"; mysql_query($sql) or die(mysql_error()); Quote Link to comment https://forums.phpfreaks.com/topic/215239-slight-hand/ Share on other sites More sharing options...
MadTechie Posted October 5, 2010 Share Posted October 5, 2010 Like this $sql="INSERT INTO messages (to_username,from_username,message,type, timestamp) VALUES ('{$playerdata['username']}','System','You have reached level ".($level + 1)." in Notoriety, Please check the Skill Points section to see if you now qualify for any upgrades!','Player', NOW())"; Quote Link to comment https://forums.phpfreaks.com/topic/215239-slight-hand/#findComment-1119413 Share on other sites More sharing options...
Phpfr3ak Posted October 5, 2010 Author Share Posted October 5, 2010 Like this $sql="INSERT INTO messages (to_username,from_username,message,type, timestamp) VALUES ('{$playerdata['username']}','System','You have reached level ".($level + 1)." in Notoriety, Please check the Skill Points section to see if you now qualify for any upgrades!','Player', NOW())"; Thanks man, worked great!!! Quote Link to comment https://forums.phpfreaks.com/topic/215239-slight-hand/#findComment-1119414 Share on other sites More sharing options...
MadTechie Posted October 5, 2010 Share Posted October 5, 2010 If solved please click the "Mark Solved" button bottom left (save others reading the whole post just to find its ended! Quote Link to comment https://forums.phpfreaks.com/topic/215239-slight-hand/#findComment-1119421 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.