• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Gesior AAC] NICE CLASS + Feedback System

I still believe Paxton is right though. OOP has more overview, the seperation, that's what you want with OOP. Like having two different files, one for HTML and the $variable = new Whatever($whatever);. So that you can easily go to that HTML document and change the tags in it. With this you must search where you want to change everything, etc. It just gives as Paxton already said, more flexibility. Ofcourse, this scripts improves the user-friendlyness of Gesior AAC very well. It isn't that your script is bad, no, it's awesome. I think Paxton just wanted to mention that, so that you could improve it a bit more :p.

No offence on either of you, nor on anyone else. Just mentioning what Paxton already mentioned, in another way of speaking.

Please don't go and flame around everyone now, everyone made his point I think.
 
Zoriath please do not comment at all. You are more than wrong, if anyone mention this again then I will ignore that person. I already said discussion is over, don't fill the thread with the same discussion again as I've already given my answers and will not repeat it again, if you don't wish to read and understand what I say then go somewhere else.

I'm not trying to develop some PHP extension, no need for flexibility within class. The flexibility it has is all I want it to have and nothing more what's so damn hard to understand ? -.-
 
Fatal error: Class 'OTSTable' not found in C:\xampp\htdocs\feed.php on line 246

???
 
Else you don't have the table.php script, or didn't name it table.php. Didn't look all through the feed.php script, so I don't know if it's already included.

Sorry for double post, couldn't edit.
 
Where is the edit button?
Anyway:

<li><a href="index.php?subtopic=feed">Feedback</a></li>

in my layouts.php..

and i get this error:

Fatal error: Class 'OTSTable' not found in E:\OTSERVER\xampp\htdocs\feed.php on line 246

Do i haft to do any cool functions like; "include:-> table.php" bla bla?

If so, how?

Thanks
 
Yes sorry forgot to write it, you have to include it... include "table.php"; at top of layouts.php
 
Yes sorry forgot to write it, you have to include it... include "table.php"; at top of layouts.php

I dont understand it, u wrote post it at top of layout.php but it ain't working for me. I wrote:
Code:
include "table.php";
 
Hmm, are you sure ? Did you take the "table.php" code I wrote in first post too ?

Do you receive any errors ? If so, what errors ?
 
I receive the same error like frankfarmer. I made in my index.php this:
Code:
case "feedback":
                $topic = "Feedback";
                $subtopic = "feedback";
                include("feedback.php");
        break;

Then I went to layout and made it looks like this:
Code:
include "table.php";

So the beginning of the layout would look like this:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
include "table.php";
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250"/>

I hope you can fix it.
 
I receive the same error like frankfarmer. I made in my index.php this:
Code:
case "feedback":
                $topic = "Feedback";
                $subtopic = "feedback";
                include("feedback.php");
        break;

Then I went to layout and made it looks like this:
Code:
include "table.php";

So the beginning of the layout would look like this:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
include "table.php";
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250"/>

I hope you can fix it.

looks like u try to put a php function inside html.

do it like this:
<?PHP
include 'table.php';
?>

Also not sure about this if its loaded correctly? (not same location?) maybe its better to put it in function phpfile?;d
 
Can't edit my post :S

So I did new post. It's working fine for me now because i posted it into my feedback.php file but i got a new problem. I ain't so much knowledge about CSS so i wanna ask you guys how to fix this bug:

http://www1.speedy*****malware.localhost/data/178967392/18992583/66774222/Unbenannt.jpg
 
I have updated feedback script (not table.php), I added so you can write there your pixels you need (normally it's '100%' which work for most AAC, but not yours :p) so you can write there the pixels you need.

Hope it works, good luck :)
 
Now updated :p Figured it would be the textarea who did it ^.- Now just edit the "$textarea_cols" to fit your needs.
 
Sorry forgot :p Added to main post (or here: icons.rar)
 
Back
Top