ElaKiri PRO Section!

kalhan

Member
Jul 16, 2006
3,181
0
0
GTRZ said:
Use this section ONLY for professional talking based on the subject of the thread.

Do NOT use this section for chat, jokes or DO NOT ever go out of topic!

This is a serious discussion section!

If your topic not going under other sections and you want some serious discussion then post it here.

From thread starter to reply posters all should stick to the topic. If you have some other topic then start a new thread in the relevant section.

This is an effort to make some serious talking area in ElaKiri for important topics. So please support it.

http://www.elakiri.com/forum/forumdisplay.php?f=48






professional talking only wow .......
 

shaaj

Member
Sep 21, 2006
3,817
4
0
Death Valley
GREAT JOB LOKU SIR...
11.gif
 

AlienX

Member
Jan 10, 2008
1,097
0
0
40
Moratuwa
this is really cool.. finally someplace for serious talk. thnx GT!. What if the pendamic of spamming spreads into this as well ?? :(



But why the hell did you post this thread on 1st April :lol:

---jk--- ;)
 

GTRZ

Administrator
Staff member
  • Apr 27, 2006
    19,480
    10,860
    113
    damannaked said:
    hi,
    GT sir great job.....u not like our politics...keep up to promises....thanx on behalf of all the elakiri pros...

    and now its our job to keep dis away from spammers and make this tread very happening and full of usefull discussions....

    so lets start it guys

    Cool bro, i can see you have already started a thread in PRO section. Keep it up! :yes:
     

    GTRZ

    Administrator
    Staff member
  • Apr 27, 2006
    19,480
    10,860
    113
    zCexVe said:
    Cant we have every section except talk! and Jokes like this? :D

    First we'll start from this, then we can check the growth. :D
     

    GTRZ

    Administrator
    Staff member
  • Apr 27, 2006
    19,480
    10,860
    113
    hemalmenaka said:
    its great, but it just apper as a normal thread in "recent thred" area, which i think is not good at all. i think we should seperate this section or do something that clearly shows the idea. anyway, lets see how it goes.
    psyche said:
    If people start spamming in this section as well what action can you take??

    'coz when a thread appears under the recent threads many of those irresponsible fellows will start spamming like in any other section without giving much attention to which particular section the thread belongs to.

    So i'm quite skeptic on how this idea would work out well unless you can stop any thread coming from this section appearing in the recent threads and show them under a separate section in the homepage so that it is being highlighted to say that this particular thread belongs to the Elakiri PRO.

    AlienX said:
    this is really cool.. finally someplace for serious talk. thnx GT!. What if the pendamic of spamming spreads into this as well ?? :(

    The main idea is not to make people hijack important threads or fill them with spam. So in the long run what i am expecting is if they find some serious talking thread then only put something related to that without going off topic. So the final outcome is people chatting and doing jokes in chat or joke sections and others going to professional and serious talking.

    So this will be some training for that and slowly adopting people for that idea. So all threads will be in the most recent threads table. What you got to do is just don't make fun or spam any thread which is not started for such thing.

    About what i am going to do for the people who break the rule :P Well i haven't decided yet, Anyway I will really appreciate if others can show him like this is not free talk or joke section, so please do not hijack or go off topic. I am really waiting to see that happening within our members.
    Anyway after you say that if someone said like just mind your own business or try to act fool. I will surely remove him and make the discussion stable again. :D
     

    GTRZ

    Administrator
    Staff member
  • Apr 27, 2006
    19,480
    10,860
    113
    shalinda said:
    GT i am scared to go to the section
    What makes you scare? Feeling like too professional? No need to wear ties ;)

    Big thanks to everyone again for supporting this section and adding comments. :D
    So lets put it in action. :yes:
     

    dpg

    Active member
  • Oct 12, 2006
    10,442
    6
    38
    $ȑї ḶÅῇḵấ
    GTRZ said:
    About what i am going to do for the people who break the rule :P Well i haven't decided yet, :D

    You should let dumbasses to be themselves only 2 times in this section. His or her 3rd time will be ur favour8 time. (banning time! :lol: )
     

    GTRZ

    Administrator
    Staff member
  • Apr 27, 2006
    19,480
    10,860
    113
    dpg said:
    You should let dumbasses to be themselves only 2 times in this section. His or her 3rd time will be ur favour8 time. (banning time! :lol: )

    haha no i don't enjoy banning people. :D
    Anyway I will really appreciate if others can show him like this is not free talk or joke section, so please do not hijack or go off topic. I am really waiting to see that happening within our members.
     

    earthling

    Well-known member
  • Jun 15, 2006
    5,873
    5,132
    113
    GTRZ said:
    Use this section ONLY for professional talking based on the subject of the thread.

    Do NOT use this section for chat, jokes or DO NOT ever go out of topic!

    This is a serious discussion section!
    If your topic not going under other sections and you want some serious discussion then post it here.
    From thread starter to reply posters all should stick to the topic. If you have some other topic then start a new thread in the relevant section.
    This is an effort to make some serious talking area in ElaKiri for important topics. So please support it.

    Thankx for this section GTRZ.. finally we get 2 chase away the spammers from a topic.. :lol:

    milindasenarath said:
    yep gd work bt mekath spam wenawa sure
    No..when they get the message that their spamming will not be welcome in this section, they'll get the message :rolleyes:
     

    heshan123

    Member
    Jan 12, 2007
    3,422
    3
    0
    40
    SrI lAnKa
    Does anyone know how to access a MySQL databse using AJAX?

    Code:
    var xmlHttp
    
    function showUser(str)
    { 
    xmlHttp=GetXmlHttpObject()
    if (xmlHttp==null)
     {
     alert ("Browser does not support HTTP Request")
     return
     }
    var url="getuser.php"
    url=url+"?q="+str
    url=url+"&sid="+Math.random()
    xmlHttp.onreadystatechange=stateChanged 
    xmlHttp.open("GET",url,true)
    xmlHttp.send(null)
    }
    
    function stateChanged() 
    { 
    if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
     { 
     document.getElementById("txtHint").innerHTML=xmlHttp.responseText 
     } 
    }
    
    function GetXmlHttpObject()
    {
    var xmlHttp=null;
    try
     {
     // Firefox, Opera 8.0+, Safari
     xmlHttp=new XMLHttpRequest();
     }
    catch (e)
     {
     //Internet Explorer
     try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
     catch (e)
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
     }
    return xmlHttp;
    }

    The above code is used to access the MySQL database using a file called "getuser.php". But what I want is direct access. Does anyone know how to do it?