Jump to content

MasterRenny

Members
  • Posts

    15
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

MasterRenny's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. But it doesnt remember it was clicked? therefore if reloaded it appears again =]
  2. Do you know how i could go about this?
  3. Hide a content in a div tag or a table field when you tick a check box, and then for it to remember which ones where checked so when they return they can go right back to where they was?
  4. Ok i want to set up a site where they sign up, they then pay for the product and then emailed the information and can then access the members only bit using the information they entered. But i have no idea how to go about this, are there any systems out there that can allow for me to do this? i know of DLGuard but thats to costly and im sure theres free ones? or atlease a way to do it cheaper. Any help will be greatful, thanks, Renny.
  5. What I want is for it to login on the wordpress site and when they go to the fourm for it to already be logged in on there Basically I wanna intergrate the two systems, there I'd like it so when you click a user on the wordpress bit for it to go to the user profile on the vbulletin bit...etc but like I say I don't know much about php and everyone over at vbulletin.org are useless... And I can't seem to find a adding that will atleast use the same users. If I wanted to create a registration page on the wordpress bit would I just need to make the form values invert in to the correct datebase values?
  6. Hello, Does anyone know how i could add a vbulletin login form on a wordpress page? ive been over to vbulletin.org and non one over there is helping =[ Thanks, Renny
  7. Ok thanks ill look in to it. though dont surpose you have any idea what i should search..etc? ???
  8. Hello, Im not all that good at php so sorry if my code isnt very good. Im trying to make it so when i click a link it changes the subnavs, however whenever i click the link the whole page reloads. therefore is there a way for me to stop the page from reloading. Heres my code; <a class="home" href="index.php?p=home"></a> <?php $var = "p"; $defaultname = "home"; $default = "home.php"; if (file_exists("files/$_GET[$var].php")) { include ("files/$_GET[$var].php"); } else if ($_GET[x] == "$defaultname" || !$_GET[$var]) { include("$default"); } else { echo("<h2>Error</h2>Page doesn't exist"); } ?> Thanks, Renny
  9. Yer thats becuase ive not uploaded them 3 files yet =] ill upload them, give me a sec and then you'll see it all works nicely ^.^
  10. Oh, he listens to you then. *sulks* =] But yes it didnt work, and since i put that code in my page it works fine now! thanks again
  11. sorry dont understand oO try this <?php if($_GET['link'] == "Home"){ include("news/show_news.php"); } elseif($_GET['link'] == "About"){ include("about.html"); } elseif($_GET['link'] == "Rules"){ include("rules.html"); } elseif($_GET['link'] == "News"){ include("newsshow_archives.php"); } elseif($_GET['link'] == "Downloads"){ include("downloads.html"); } else{ include("news/show_news.php"); } ?> Nope still dont work
  12. Oh yer sorry forgot when i load it all all i get is a black page, and when i click on a link the page dont show http://www.spartansguild.co.uk/ <<<<< see =[ the massive blank area to the left is where the text is ment to show up And ok ill try adding the code =]
  13. Hello Ive been trying to debug my code, but i cant seem to see whats up with it! Heres My links <li><a HREF="?link=Home">Home</a> </li> <li><a HREF="?link=About">About</a></li> <li><a HREF="?link=Rules"> Rules</a></li> <li><a HREF="?link=News">News</a></li> <li><a HREF="?link=Downloads">Downloads</a></li> And heres my code for where i want it to show; <?PHP if($_GET['link'] == "Home"){ include("/news/show_news.php"); } elseif($_GET['link'] == "About"){ include("/about.html"); } elseif($_GET['link'] == "Rules"){ include("/rules.html"); } elseif($_GET['link'] == "News"){ include("/news/show_archives.php"); } elseif($_GET['link'] == "Downloads"){ include("/downloads.html"); } else{ include("/news/show_news.php"); } ?> any ideas? im really confuzed on why its not working becuase it use to work! Thanks, Renny
×
×
  • 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.