Jump to content

ki

Members
  • Posts

    208
  • Joined

  • Last visited

Posts posted by ki

  1. thanks for the response but i get this error

    Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in /home/tragical/public_html/index.php on line 422

    Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/tragical/public_html/index.php on line 425
  2. [quote author=gentekshun link=topic=118821.msg492914#msg492914 date=1167354402]
    [quote author=thorpe link=topic=118821.msg485889#msg485889 date=1166232912]
    Looks to me like your host doesnt support php as its printing the code instead of parsing it. Are you sure the server supports php?
    [/quote]

    Happy Holiday's
    Thank's for your responce but i stop using awardspace and got my own domain with hosting but if you know someone that knows how to set up a chat room script or game cheats script your help would be greatly appreciated.
    [/quote]
    most domains offer cpanel, which has a wide variety of scripts u might want to check out.
    or search around the web for scripts you would like. most scripts include a install page so it would be easy to find one of those.
  3. Okay, well I know the search result I have this code, but nothing comes up when i know there are posts in which it contains, say take a look and tell me whats wrong here.

    [code]if(isset($HTTP_POST_VARS['submit'])) {

    if(!$_POST['search']) {
    header("Location: ?page=forum&sub=search");
    die();
    }
    $searchterm = $_POST['search'];
    $query = mysql_query("SELECT * FROM `forum_threads` WHERE `text` LIKE %$searchterm%");
    while($search = mysql_fetch_object($query)) {
    echo $search->id;
    }

    } else {

    echo "<form method=\"POST\" action=\"?page=forum&sub=search\">";
    echo "<input type=\"text\" name=\"search\" id=\"search\">";
    echo "<input type=\"submit\" name=\"submit\" id=\"submit\">";
    echo "</form>";

    }[/code]
  4. u just have to use a link
    like

    or anything like

    [code]<input type="button" onClick="ExpandCollapse('divid1')" value="Hide/Disable Div">
    <div id="divid1">Hi Div 1</div>


    <input type="button" onClick="ExpandCollapse('divid2')" value="Hide/Disable Div">
    <div id="divid2">Hi Div 2</div>


    <input type="button" onClick="ExpandCollapse('divid3')" value="Hide/Disable Div">
    <div id="divid3">Hi Div 3</div>[/code]
  5. ok, if any of you have facebook you know what im going to ask
    how would you, if you select from a different option in the combo box it removes the combo box and makes a regular text box appear in the same place of the combo box with the same name and id and so on?
  6. thats kinda what im looking for, but with commas but it doesnt end with one like
    ki, user, user2,

    but i want it like how it shows the users viewing the current page like, Users Viewing Forum: ki, user, user2
  7. [code]function ExpandCollapse(e) {
    var dd = document.getElementById( e );
    if (dd.style.display == "")
    dd.style.display = "none";
    else
    dd.style.display = "";
    }[/code]
    try that, it works great for me, I forgot where I got it tho
  8. well i dont know how they did it but im just gonna guess they made it threw a database so, I want it to be able to load information into a flash program and be able to run from the video in the archives saved on the server
  9. Well what I was trying to get around is that div is allowed in one line unless used by the float: command, now im not all that good in knowledge of css but I know my way around it. I notice a span seems more flexible. But my problem is im not understanding how to display some of the stuff he used such as images and stuff to his advantage in the span cases.Or could someone give me a view on how to display more than one div on a line with out the float command?
  10. Well, I was wandering how Yves (Creator of http://www.newsboard.unclassified.de forums) made his entire site from spans? When spans only have limited limitations, compared to divs.
×
×
  • 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.