Jump to content

burnside

Members
  • Posts

    541
  • Joined

  • Last visited

Everything posted by burnside

  1. is there a problem with the login? its always asking for my password, even thought i "select" forever? edit: my cookies are set to allow this site as well,
  2. burnside

    I...

    I'm hungry and want a bigmac lol.
  3. burnside

    I...

    Here you go. The new BigMac Pro. lol
  4. burnside

    I...

    Free big mac with every mac purches. They wouldnt really be fanboys then would they ....... More like Fatboys! LMFAO
  5. burnside

    I...

    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.
  6. i seen the value="Submit" and just assumet it was name="Submit" LOL who names there submit button submit anyway lol,
  7. Bah how could i of missed that GRRRR!!!! well done
  8. 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 "; } } ?>
  9. 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?
  10. Just curious, Why would you want to do that?
  11. burnside

    I...

    Can i have a large coke with mine .... Big Mac that is.
  12. in your form fields use id="name" as well as name="name" also change post to POST
  13. seen whats in the page source [pre] </html>[/pre]
  14. 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.
  15. but that you want isnt realy a visited link as soon as you click a diffrent link you want it to go back to default, whats the point lol?
  16. well why not just use hover then?
  17. so when you click link2 link1 will change back to normal?
  18. <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.
  19. 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>
  20. is var $var_mobile_numbr[1] even = 7 ?
×
×
  • 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.