Jump to content

slpwkr

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

slpwkr's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. where will I put ini_set('error_reporting', 1); ?
  2. Thanks but my problem is not in the code but in the configuration.
  3. Its not Error messages, it's warning messages. My problem is not fixing the warning messages but to configure php.ini or .htaccess so that all the warning message will not appear.
  4. Hi, I have problem with my godaddy account. There are alot of warning messages in some of my pages. I tried to turn it off using php.ini file but its not working. Are there any other ways to turn it off? Thank you.
  5. How do they do that kind of encryption after log in just like in www.meebo.com?
  6. is it possible to read a file starting from the bottom? thanx!
  7. the problem of that code is it won't display the idle users who are online. are there anyways to avoid this problem?
  8. Thanx, but I don't think what im trying to do is possible. Its something like this [code] function myfunc ($variable) { global $array; $array[$variable]=$variable; } $var1='my 1st string'; $var2='my 2nd string'; myfunct ($var1); myfunct ($var2); print_r($array); #I want an output something like this: ('var1'=>'this is my 1st string', 'var2'=>'this is my 2nd string') [/code]
  9. its like this: [code] $variablename= 'whatever'; echo $variablename; # output: Whatever echo '$variablename'; # output: $variablename echo substr('$variablename',1); # output: variablename <--- this is the one i need [/code] what I need is to do is... Use the $variablename and print variablename just like the 3rd example but not using substr. Is there any other way?
  10. Hey guys is there a function to convert a variable name into string? Ex: [code] $variablename= 'whatever'; [/code] I want to print the "variablename" only without the $ (dollor) sign and not using a substr() function. thank you!
  11. Hi guys, what are the ways to determine the number of users online?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.