Jump to content

burnside

Members
  • Posts

    541
  • Joined

  • Last visited

Posts posted by burnside

  1. They should change their logo to a hamburger...  Then I would think about getting one...  Wait, nah I still wouldn't.

     

    Here you go. The new BigMac Pro.

     

    lol

  2. They should change their logo to a hamburger...  Then I would think about getting one...  Wait, nah I still wouldn't.

     

    Free big mac with every mac purches.

     

    They wouldnt really be fanboys then would they ....... More like Fatboys! LMFAO

  3. I find it funny because when ever i see a mac advert or some one speaks to me about mac i think mmm big mac, but the mac logo is a apple lol.

     

     

    If that makes any sence what so ever.

  4. You don't have to change your whole code like burnside tells you. It looks to me like you did not name the submit button change this:

     

    input type="image" src="../images/Add-To-Cart.gif" value="Submit" alt="Submit">
    

     

    to this:

     

    input type="image" src="../images/Add-To-Cart.gif" value="Submit" alt="Submit" name="Submit">
    

     

    All I did there was add the name tag.

     

    Bah how could i of missed that GRRRR!!!! well done :P

  5. Just change it to how you want but that works as it stands.

     

    
    
      <?php
      
       if(empty($_GET['action']))  { 
      
      ?> 
      <form action="?action=check" name="myform" method="POST" />
      
      URL ONE: <input type="radio" name="url" id="url" value="1" /> 
       URL TWO: <input type="radio" name="url" id="url" value="2" /> 
        URL THREE: <input type="radio" name="url" id="url" value="3" /> <br />
      <input type="submit" value="submit" /> 
      </form>
      <?php
           }
      ?>
    
      <?php
       if($_GET['action'] == "check" )  {
    
       $url = (int)$_POST['url'];
    
       
       if($url == 0 ) { echo " Error "; }
       elseif($url == 1 ) { echo " URL 1 "; }
       elseif($url == 2 ) { echo " URL 2 "; }
       elseif($url == 3 ) { echo " URL 3 "; }
           }
      ?>
    

  6. in your link have the id etc .. ...

     

    link:

    <a href="profile.php?mod=viewid&<?php echo $id_value; ?>" />View Profile</a>

     

    profile:

    $id_value = (int)$_GET['viewid']; 
    
    select from db where id={$id_value} blah blah 
    
    some thing like that maybe? 

  7. ah i see now.

     

    well the way that is done in the pagin tutorial is by a database,

     

    // loop to show links to range of pages around current page
    for ($x = ($currentpage - $range); $x < (($currentpage + $range) + 1); $x++) {
       // if it's a valid page number...
       if (($x > 0) && ($x <= $totalpages)) {
          // if we're on current page...
          if ($x == $currentpage) {
             // 'highlight' it but don't make a link
             echo " [<b>$x</b>] ";
          // if not current page...
          } else {
             // make it a link
     echo " <a href='{$_SERVER['PHP_SELF']}?currentpage=$x'>$x</a> ";
          } // end else
       } // end if 
    } // end for
    

     

    but for that to work its php and not css, other than that i have no idea how to do what your asking.

  8. As mentioned many times in many topics, PHP Freaks will only officially support browsers that adhere adequately to W3C standards concerning interpretation of (X)HTML and CSS markup. We will also only support the newest version of a browser and it is thus the users' own responsibility to keep the software installed on their computer updated. Browsers that do not fit this description yet renders the website correctly anyway is just a lucky side-effect. Users should, however, still use a standards compliant and updated browser.

     

    That being said, I don't see any footer problems in IE7.

     

    Its easier to say get a proper browser :P

  9. <style type="text/css">
    A:link {background: #FFCC00; text-decoration: none}
    A:visited {background: black; text-decoration: none}
    A:active {background: #FFCC00; text-decoration: none}
    A:hover {background: #FFCC00; font-weight:bold; color: red;}
    </style>
    

     

    just mess around with that.

  10. because all the colours are the same?? maybe.

     

    there all set as : color:#ffffff;

     

     

    <style>
    a:link{
    background-color:#000000;
       font-family:Arial, Helvetica, sans-serif;
       font-size:12px;
       color:#ffffff;
       height:60px;
       padding:4px;
       margin:10px;
    display:block;
    width:20px;
       }
    a:visited{
    background-color:#ff0000;
       font-family:Arial, Helvetica, sans-serif;
       font-size:12px;
       color:pink; //  <------------- change that colour i like pink tho haha 
       height:60px;
       padding:4px;
       margin:10px;
    display:block;
    width:20px;
       }
    a:active{
       background-color:#000000;
       font-family:Arial, Helvetica, sans-serif;
       font-size:12px;
       color:#ffffff;
       height:60px;
       padding:4px;
       margin:10px;
    display:block;
    width:20px;
       }
    a:hover{
       background-color:#000000;
       font-family:Arial, Helvetica, sans-serif;
       font-size:12px;
       color:#ffffff;
       height:60px;
       padding:4px;
       margin:10px;
    display:block;
    width:20px;
       }
    </style>

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