Jump to content

Senkerik

New Members
  • Posts

    9
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

Senkerik's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I don't understand how to fix this I asked once already sorry. Warning: implode() [function.implode]: Invalid arguments passed in /home/ceasedfa/public_html/readchat.php on line 35 <?php include ('global.config.php'); include ('include/class.core.php'); $CeasedFate = new Core(); $CeasedFate->connectDB($SQL_host,$SQL_user,$SQL_pass,$SQL_db); $CeasedFate->stripPost(); $CeasedFate->stripGet(); $CeasedFate->is_logged($_SESSION['username'],$_SESSION['uid']); $d = $CeasedFate->detail('users','ignore_list','username=\''.$_SESSION['username'].'\''); $list = explode('|',$d['ignore_list']); $filename = $ChatFile; $handle = fopen($filename, "r"); $contents = @fread($handle, filesize($filename)); $newc =explode('<br>',$contents); foreach($newc as $cnew){ if($x<=25){ $temp_= ereg_replace('<span id="time_'.$_SESSION['username'].'" style="visibility:hidden;">',' <span style="visibility:visible;color:#ffccff;font-size:14px;font-family:arial;">',$cnew); $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">',' <span class="private">',$temp_); $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">','<span class="private">',$temp_); if(count($list)>0){ foreach($list as $ignore){ if (strlen(trim($ignore))>0){ $temp_= ereg_replace('<span id="ign_'.$ignore.'">',"<span style='display:none;'>",$temp_); } } } $newcc[]=$temp_; } $x++; } $newcc=implode('<br>',$newcc); echo $newcc; fclose($handle); ?> Wanna make a few bucks? PHP/SQL programmer needed Contact me for a job
  2. I'm still not fully understanding this. Could you maybe help me a little more? Sorry for being a pain the in butt. Just wanna get this right so i don't mess up next time
  3. I'm still not fully understanding this. Could you maybe help me a little more? Sorry for being a pain the in butt. Just wanna get this right so i don't mess up next time
  4. Some reason this problem has come up.. All i have done was download my files to my comp then re-upload them to a new server. Warning: implode() [function.implode]: Invalid arguments passed in /home/ceasedfa/public_html/readchat.php on line 35 This is my ReadChat.php <?php include ('global.config.php'); include ('include/class.core.php'); $CeasedFate = new Core(); $CeasedFate->connectDB($SQL_host,$SQL_user,$SQL_pass,$SQL_db); $CeasedFate->stripPost(); $CeasedFate->stripGet(); $CeasedFate->is_logged($_SESSION['username'],$_SESSION['uid']); $d = $CeasedFate->detail('users','ignore_list','username=\''.$_SESSION['username'].'\''); $list = explode('|',$d['ignore_list']); $filename = $ChatFile; $handle = fopen($filename, "r"); $contents = @fread($handle, filesize($filename)); $newc =explode('<br>',$contents); foreach($newc as $cnew){ if($x<=25){ $temp_= ereg_replace('<span id="time_'.$_SESSION['username'].'" style="visibility:hidden;">',' <span style="visibility:visible;color:#ffccff;font-size:14px;font-family:arial;">',$cnew); $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">',' <span class="private">',$temp_); $temp_= ereg_replace('<span id="'.$_SESSION['username'].'" style="display:none;">','<span class="private">',$temp_); if(count($list)>0){ foreach($list as $ignore){ if (strlen(trim($ignore))>0){ $temp_= ereg_replace('<span id="ign_'.$ignore.'">',"<span style='display:none;'>",$temp_); } } } $newcc[]=$temp_; } $x++; } $newcc=implode('<br>',$newcc); echo $newcc; fclose($handle); ?>
×
×
  • 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.