Jump to content

waynewex

Members
  • Posts

    2,405
  • Joined

  • Last visited

Posts posted by waynewex

  1. You can do this using CSS. Set the main container:

     

    <div style="width:100px; background-color:#fff; border:#eee 1px solid; height:30px;">
    <div style="width:<?php echo $percent; ?>%; background-color:#eee;">
    
    <>
    <>

  2. If you have a column called Customer with either a N or a Y in it, then your query could look like:

     

    $query = "SELECT * FROM MyTableName WHERE Customer = 'Y'";
    

     

    If the query becomes slow, you should look into indexing the Customer column.

     

    Or have I misunderstood your question? If so, please show us your table schema (structure).

  3. Hey buddy, you could try using my function if you want. It's pretty simple stuff and I always use it on projects:

     

    function simple_mail($from, $to, $subj, $msg, $charset="UTF-8", $extraheaders=""){
          $headers = "From: {$from}\n";
          $headers .= "MIME-Version: 1.0\n";
          $headers .= "Content-Type: text/html; charset=\"$charset\"\n";
          $headers .= "Content-Transfer-Encoding: 7bit\n";
          $headers .= $extraheaders;
          $headers .= "\n";
          
          $msg = $msg."\n\nThank You";
          
          @ $ret = mail ($to, $subj, $msg, $headers, "-f$from");
          return $ret;
       }
    

  4. Firstly - potential clients could end up viewing your site in IE. Take that into consideration. When I first landed on the splash page, I thought to myself "What now?" Maybe that page a little bit more usable by making it more obvious that the face can be clicked on? I'm not really fond of the font you used at the top for "Hi, I'm Andy".

     

    You're probably wondering what you're doing on a website owned by a homosexual now aren't you :o?

    Well, don't ask me.

     

    May I ask what your sexual orientation has to do with your design capabilities? If you're wanting to tell people more about yourself, why not add other pieces of information as well, instead of just focusing on that one part of your life? Just seems a bit odd to me.

     

    I like the color scheme of the site. Minimalist.

     

    Why do you have a link to your splash page on the main navigation? It's kind of pointless, don't you think? Also note that "home" and "index" are often considered to be the same thing.

     

    Don't mean to sound negative or anything but the whole

     

    Mr.Obvious much?

     

    ... makes you sound kind of too sarcastic. Will potential clients appreciate that?

     

    btw, I'm not really gay.

     

    I know you have to make your site personal etc, but humor doesn't always translate well over text. Keep that in mind.

×
×
  • 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.