EpicKev Posted March 8, 2008 Share Posted March 8, 2008 Hey guys was just wondering i if i can get a lil' help with some codes hehe well theres a few codes that i don't know what they mean / do so hopefully you guys can help me well heres the codes... 1) get_magic_quotes_gpc 2) mysql_num_rows 3) addslashes 4) != hopefully you can help me!! thanks Quote Link to comment https://forums.phpfreaks.com/topic/95063-lil-help/ Share on other sites More sharing options...
micah1701 Posted March 8, 2008 Share Posted March 8, 2008 1) get_magic_quotes_gpc = returns true or false if magic_quotes are turned on by default. magic_quotes adds backslashes \ before "quote" marks so it doesn't screw up your database. "Hello" becomes \"Hello\" 2) mysql_num_rows = the number of rows returned from a database query 3) addslashes = magic_quots aren't turned on, you need to manually addslasshes. 4) != NOT EQUAL FYI, if you add a function name to the end of www.php.net/ you will see the manual entry on that function. ie: http://www.php.net/get_magic_quotes_gpc Quote Link to comment https://forums.phpfreaks.com/topic/95063-lil-help/#findComment-486932 Share on other sites More sharing options...
EpicKev Posted March 8, 2008 Author Share Posted March 8, 2008 Oeerr, thanks for your helpp can you give me an example of how to use != plx ? Quote Link to comment https://forums.phpfreaks.com/topic/95063-lil-help/#findComment-486935 Share on other sites More sharing options...
wildteen88 Posted March 8, 2008 Share Posted March 8, 2008 Read the manual before asking questions on comparison operators. Quote Link to comment https://forums.phpfreaks.com/topic/95063-lil-help/#findComment-486942 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.