Jump to content

paulley23

Members
  • Posts

    11
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

paulley23's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi all I made a guestbook for a little site im working on, I have disabled the form button so no one can post yet but there some person posted on it. How can they post when i disabled the form button ??? Thanks in advance
  2. hi all does any people know of any tutorials about how to create and usergroup permission system eg admin , user etc and when logged in has admin it goes to a different page to what the user will go to if you know what i mean. thanks paul
  3. sorted i left a = out like this [code] elseif ($cmd= "clients") { include ("clients.inc"); [/code] in put back the = like this [code] elseif ($cmd== "clients") { include ("clients.inc"); [/code] Sorted  :D
  4. now its showing a blank page not the page it surposed to be ???
  5. hi all i got this this bit of code:- [code] <?php if ($cmd=="") { include ("main.inc"); } elseif ($cmd="clients") { include ("clients.inc"); } elseif ($cmd=="services") { include ("services.inc"); } elseif ($cmd=="support") { include ("support.inc"); } elseif ($cmd=="contact") { include ("contact.inc"; } elseif ($cmd=="about") { include ("aboutus.inc"); } elseif ($cmd=="faq") { include ("faq.inc"); } else { include ("error.inc"); } ?> [/code] but to dont work, i have just change over servers to mine own server and before i move it , it worked fine. when i go to /index.php?cmd=about i just displays the main.inc any ideas why this could be. thanks paul
  6. hi i have this code, [code] <?php if ($home == "") { require("page.php"); } else if($home == "1") { require("page1.php"); } ?> [/code] when i go to www.domain.com/h/ page.php shows but when i go to www.domain.com/h/?home=1 it should display page1.php but it displays page.php still thanks for any help paul
  7. hi all I got this problem with querystrings where , i have got the main url has www.domain.com/h/ and i have set the page link has ?home=1,?home=2,?home=3 etc etc. When i load the page up and go to them links, it show the links has www.domain.com/h/ instead of www.domain.com/h/?home=1 etc but has soon as i put www.domain.com/h/index.php?home=1 etc the links show has www.domain.com/h/index.php?home=1 etc. any one got any idea what could be going to here thanks paul
×
×
  • 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.