bic_crystal Posted April 11, 2008 Share Posted April 11, 2008 hi there, i dont know if this is a silly question to be asking, but is there anything equivelant to the $result function in php?? Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/ Share on other sites More sharing options...
discomatt Posted April 11, 2008 Share Posted April 11, 2008 $result is not a function, it is a variable. Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515200 Share on other sites More sharing options...
bic_crystal Posted April 11, 2008 Author Share Posted April 11, 2008 sorry it is a variable, but is there an alternative to using $result? Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515206 Share on other sites More sharing options...
discomatt Posted April 11, 2008 Share Posted April 11, 2008 You could use another variable name if you like. Showing us some code might help us translate what you're trying to accomplish Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515209 Share on other sites More sharing options...
bic_crystal Posted April 11, 2008 Author Share Posted April 11, 2008 well im trying to create somehting like: $result = mysql query is there anything other than $result i can use ? sory if this sounds a bit silly Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515218 Share on other sites More sharing options...
discomatt Posted April 11, 2008 Share Posted April 11, 2008 $a = mysql_query('SELECT `col` FROM `table` WHERE 1'); $kingOfFrance = mysql_query('SELECT `col` FROM `table` WHERE 1'); $Anything_you_want = mysql_query('SELECT `col` FROM `table` WHERE 1'); all will work fine. Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515223 Share on other sites More sharing options...
bic_crystal Posted April 11, 2008 Author Share Posted April 11, 2008 thank alot for your help :-) Link to comment https://forums.phpfreaks.com/topic/100732-result-alternative/#findComment-515227 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.