N-Bomb(Nerd) Posted September 16, 2009 Share Posted September 16, 2009 I can't remember if there's a way to do this or not.. but instead of doing: $value = 12; $vaule = $value + 3; Isn't there something like: $value = 12; $vaule =+ 3; <-- Noob :'( Link to comment https://forums.phpfreaks.com/topic/174421-solved-quick-question/ Share on other sites More sharing options...
ngreenwood6 Posted September 16, 2009 Share Posted September 16, 2009 you've got it backwards. its: $value = 12; $value += 3; Link to comment https://forums.phpfreaks.com/topic/174421-solved-quick-question/#findComment-919332 Share on other sites More sharing options...
N-Bomb(Nerd) Posted September 16, 2009 Author Share Posted September 16, 2009 you've got it backwards. its: $value = 12; $value += 3; Yay, thanks. Link to comment https://forums.phpfreaks.com/topic/174421-solved-quick-question/#findComment-919334 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.