Hi there,
I’m having serious problems with getting my web application to work in Chrome. It’s working fine in Firefox and I’m worked out all the bugs in IE, but in Chrome it’s like some of my pages are frozen and whereas the user should be able to click on a number of buttons and scroll down the page, they can’t do anything, the page is frozen! Any help would be great please as I’m totally stuck!! I’m a complete beginner so layman terms would be great!
Here’s my code:
[php]
<?php
global $core;
$topicId = $_GET['topic'];
$filter = $_GET['filter'];
$pageId = $_GET['id'];
if (!isset($pageId))
{ $pageId = $core->GetFirstPage($topicId, $filter); } ?>
<?php if (isset($topicId))
{ if ($filter == "") { $filter = "0"; }
$core->GetPersonalTopicList($topicId, $filter, $pageId);
}
else { echo "ERROR : Topic ID Not Set"; } ?>
<?php if ($filter == 0) echo " "; else echo "
"; ?>
Contents
<div id="topic_content_text_top_bar_personal"style="background-image: linear-gradient(bottom, rgb(0,12,87) 4%, rgb(56,75,161) 52%, rgb(0,0,79) 81%);
background-image: -o-linear-gradient(bottom, rgb(0,12,87) 4%, rgb(56,75,161) 52%, rgb(0,0,79) 81%);
background-image: -moz-linear-gradient(bottom, rgb(0,12,87) 4%, rgb(56,75,161) 52%, rgb(0,0,79) 81%);
background-image: -webkit-linear-gradient(bottom, rgb(0,12,87) 4%, rgb(56,75,161) 52%, rgb(0,0,79) 81%);
background-image: -ms-linear-gradient(bottom, rgb(0,12,87) 4%, rgb(56,75,161) 52%, rgb(0,0,79) 81%);
<p>background-image: -webkit-gradient(<br>
linear,<br>
left bottom,<br>
left top,<br>
color-stop(0.04, rgb(0,12,87)),<br>
color-stop(0.52, rgb(56,75,161)),<br>
color-stop(0.81, rgb(0,0,79))<br>
);"><br>
<?php echo stripslashes($core->GetPageName($pageId)); ?><br>
<?php echo " Page Id: ".$pageId.""; ?> <?php echo "Topic Id: ".$topicId.""; ?>
Notes -
<?php
$sql1 = "SELECT * FROM tbl_notes WHERE pageId='".$pageId."' AND clientId='".$core->currentClientId."'";
$result1 = mysql_query($sql1);
$num = mysql_num_rows($result1);
if ($num >0)
<?php if (isset($pageId)) { $core->GetPageContent($pageId); }
else { echo "
Please Select a Page from the list on the left "; } ?> |
[/php]