User Profile

Collapse

Profile Sidebar

Collapse
koager
koager
Last Activity: May 28 '10, 02:30 AM
Joined: Sep 2 '09
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • koager
    started a topic FVG Stuck in loading

    FVG Stuck in loading

    I got the Actionscript3 Flash Video Gallery (something like this) but it wouldn't get past the loading bar. It has worked before but I think something isn't linking correctly when I moved that portion of the website up a folder. However, I can't seem to find where or what it is and am wondering if someone can point me in the direction of where and what to look for.
    Thanks
    See more | Go to post

  • koager
    started a topic Hyperlink Button not working

    Hyperlink Button not working

    I have text animating across and I want the last sentence that comes it to be a button that will then be hyperlinked into the next page.
    I've converted it into a button and entered my ActionScript but when I test it I get the hand icon but when clicking nothing happens.

    Code:
    on(press){
    getURL("url here", "_self");
    }
    I've also tried on(release) but it didn't make a difference
    ...
    See more | Go to post

  • koager
    replied to Tables are messing up my layout
    ahahaha. -headdesk-
    it's because my page got too long and the scrollbar showed up which pushed everything to the left. Not sure if there's a way around this but what I found a way around it by setting a separate condition for the margins on specific pages of my website.
    See more | Go to post

    Leave a comment:


  • koager
    replied to Tables are messing up my layout
    My center piece seems to be shifting over only when i have 2+ rows in my table, which seems to be a strange issue.

    This is what my basic toned down code of the body and table consists of:
    Code:
    <div id="body">
      	 <!--#include FILE="portfolio-nav.shtml" -->
    <div id="body-maincol">
     <table>
          	<tr>
              <td>image</td>
    ...
    See more | Go to post

    Leave a comment:


  • koager
    started a topic Tables are messing up my layout

    Tables are messing up my layout

    I wrote my layout using <div> but then in my main body <div> I inserted a table to organize my items in it. However, now the table is pushing everything to the left by 5px or so.

    Without the table it moves back correctly, but I need the organization.


    another issue I have is that I have <div id="body">, which is the center white part where all my text and stuff goes (red at the moment, as...
    See more | Go to post

  • koager
    replied to Server Side Includes problem
    ooooh. never really noticed that.
    Thank you
    See more | Go to post

    Leave a comment:


  • koager
    started a topic Server Side Includes problem

    Server Side Includes problem

    My SSIs don't seem to be working.
    I have all the files uploaded but my header and footer aren't showing up.
    I started working on my website in .html but then renamed the extension to .shtml for SSIs.
    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html>
    <head>
    <link rel="stylesheet" type="text/css"
    ...
    See more | Go to post

  • Alright nevermind
    I solved it
    I don't know what was wrong but I retyped the code and it works now...
    See more | Go to post

    Leave a comment:


  • Another problem I seem to be having is after I delete the VBscript off, so no if statement, and just have it display the item
    Code:
    <tr>
    <td height='25' background='../images/menulinksback.gif'>
    <p>
    <img src='../images/featureicon.gif' width='10' height='10'>
    <a href='content.asp?id=<% =Request.QueryString("ID") %>&system=LUGGAGE' style='text-decoration:none'>
    ...
    See more | Go to post

    Leave a comment:


  • koager
    started a topic Error '80040e10' when everything looks correct

    Error '80040e10' when everything looks correct

    Code:
    <%
    Set rsSystemSpecs = Server.CreateObject("ADODB.Recordset")
    	rsSystemSpecs.ActiveConnection = MM_simplex_STRING
    	rsSystemSpecs.Source = "SELECT TBLHELICOPTER.MANUFACTURER, TBLHELICOPTER.HELICOPTER, TBLLUGGAGE.* FROM TBLLUGGAGE INNER JOIN (TBLHELICOPTER INNER JOIN TBLPRODUCTTOHELI ON TBLHELICOPTER.HELICOPTERID = TBLPRODUCTTOHELI.HELICOPTERID) ON TBLLUGGAGE.PRODUCT_ID = TBLPRODUCTTOHELI.PRODUCTID WHERE
    ...
    See more | Go to post

  • koager
    replied to Functions not working/breaking PHP script
    in PHP
    Nothing was really revised as I was just messing around with the code trying to get things to work but then just reverting it back as things were still breaking
    on my sql_function.ph p I have
    Code:
    function dbl_connection() {
      // Define variables to use from global context
      global $db1_name, $db1_host, $db1_user_name, $db1_password, $connection1, $connection2;
    
    	$connection1 =  @mysql_connect("mysql.example.com",
    ...
    See more | Go to post
    Last edited by Atli; Sep 10 '09, 02:12 PM. Reason: Removed DB connection info. Please don't post real URIs and login info!

    Leave a comment:


  • koager
    replied to Functions not working/breaking PHP script
    in PHP
    The alternate method of pasting sections in doesn't work well at all since other than that sql_functions.p hp I also have functions.php and config.php which also seems to have the issue with the script breaking when there is a function
    and none of variables such as these seem to work
    Code:
    	$title=$_POST["title"];
    	$ac_type=$_POST["ac_type"];
    	$brief_desc=$_POST["brief_desc"];
    	$description=$_POST["description"];
    ...
    See more | Go to post

    Leave a comment:


  • koager
    replied to Functions not working/breaking PHP script
    in PHP
    Weird, the website timed out on me when I tried editing my post to include that part.

    For some reason when I add the three lines below to the top of the script still nothing happens, even though it is suppose to display something when I test it with echo "no it doesnt work". I don't get any errors; just a blank page.
    Code:
    ini_set('error_reporting', E_ALL);
    ini_set('display_errors', 'On');
    ini_set('display_startup_errors',
    ...
    See more | Go to post

    Leave a comment:


  • koager
    started a topic Functions not working/breaking PHP script
    in PHP

    Functions not working/breaking PHP script

    I have various functions such as this throughout my script
    Code:
    function db1_select_query($sql) {
        // Always query db1
        db1_connection();
        $res = mysql_query($sql);
        if (!$res) {
         	echo("<P>Error performing query select: " . mysql_error() . "</P>");
           	exit();
        }
        db_close_connection1();
    	  return $res;
    }
    and...
    See more | Go to post

  • koager
    replied to Blank Screen still happening...
    in PHP
    Nevermind about the echoing out the data retrieved.
    I replaced $stock in the SELECT * WHERE statement with a stock code that I know and it would display it fine.

    Logically, it makes sense for it to work
    I retrieve the string that is inputted, add quotes around it, insert that into the SELECT * WHERE statement, which then takes that to the database and locates anything that matches the string, stores it as $result, and,...
    See more | Go to post

    Leave a comment:


  • koager
    replied to Blank Screen still happening...
    in PHP
    I deleted the @localhost part and it worked.
    Right now I'm trying to solve the problem of the string that I return with my form needs to be stored with " " around it for my SELECT * WHERE to be able to locate the data.
    I have $_GET['stock'] stored into $stock but I need it to be stored along with " " to be usable as it is a string and it needs to be defined as one with the quotes for it to be found in the database....
    See more | Go to post
    Last edited by Frinavale; Sep 2 '09, 07:01 PM. Reason: Please post code in [code] ... [/code] tags. Changed bold tags into code tags.

    Leave a comment:


  • koager
    replied to Blank Screen still happening...
    in PHP
    I ended up inputting it line by line to see where the error is.
    Found that and fixed it. However I have another problem now...
    It seems that it is now not connecting to the database.
    I believe I have the host, username, and password correct.

    $con = @mysql_connect( "FAAMDLDatamysq l.db.2233605.ho stedresource.co m","________"," ******");

    I've checked, double checked, and triple...
    See more | Go to post

    Leave a comment:


  • koager
    started a topic Blank Screen still happening...
    in PHP

    Blank Screen still happening...

    I know there have been various questions about blank screens from php but I've looked around and they aren't helping me at all.

    I wrote a .php page and put it up on the hosting server but the page keeps on returning blank. I've checked that I have all my brackets and semicolons placed correctly.
    I've added
    Code:
    <?php
    //turn on error reporting
    ini_set('display_errors',1);
    ERROR_REPORTING(E_ALL);
    ...
    See more | Go to post
    Last edited by Frinavale; Sep 2 '09, 07:04 PM. Reason: Please post code in [code] ... [/code] tags. Added code tags.
No activity results to display
Show More
Working...