I do.
Also when i open a php file on my pc i get:
code:
$comments_number); //get video rating stars ---reusable ------------------------------------------------------------------------------- $stars_array = array(); $stars_array = stars_array($video_id); //-------------------------------------------------------------------------------------------------------------------- //merge comments array and video array $result2 = @array_merge($result1, $comments_array, $stars_array); $result_featured[] = $result2; } //getrandom video to play $sql = "SELECT * FROM videos WHERE approved='yes' AND public_private = 'public' ORDER BY RAND()"; $query = @mysql_query($sql); $result = @mysql_fetch_array($query); $video_play = $result['video_id'].'.flv'; $video_thumb = $result['video_id'].'.jpg'; //show any errors/notifications if ($codes == "") {//only if page is not trying to load refer error. $codes = $codes_internal; } $error_code = errorcodes($codes); if (!empty($error_code)) { $blk_code = $error_code['error_display']; $code_type = $error_code['error_type']; $code_message = $error_code['error_message']; } //what to display when user logged in if ($loggedin ==1){ $blk_id = 0;//html table - error block $template = "templates/main_1.htm"; $inner_template1 = "templates/inner_index_2.htm";//middle of page $TBS = new clsTinyButStrong; $TBS->NoErr = true;// no more error message displayed. $TBS->LoadTemplate("$template"); $TBS->MergeBlock('mp', $recent); $TBS->MergeBlock('blkfeatured', $result_featured); $TBS->Render = TBS_OUTPUT; $TBS->Show(); @mysql_close(); die(); } $blk_id = 0;//html table - error block $template = "templates/main_1.htm"; $inner_template1 = "templates/inner_index.htm";//middle of page $TBS = new clsTinyButStrong; $TBS->NoErr = true;// no more error message displayed. $TBS->LoadTemplate("$template"); $TBS->MergeBlock('mp', $recent); $TBS->MergeBlock('blkfeatured', $result_featured); $TBS->Render = TBS_OUTPUT; $TBS->Show(); @mysql_close(); die(); ?
Whats wrong with php?