Jump to content

brown2005

Members
  • Posts

    942
  • Joined

  • Last visited

Everything posted by brown2005

  1. goldeneye was my fav, always tried going throw the levels without getting hit!
  2. Hi, Yeah looks better to me. Some people might think you still have a bit to much space up the top. With the copyright part, I think it you need to separate it from the content, maybe enclose it in a bar so you can see its not part of the main content.
  3. as agreed above definately to cut down on the unused space in the header. also i think the tags bit on the right could do with a bit of padding so the writing is not so close to the borders, but thats just how i like it.
  4. I think he means the colors are two bright. You can hardly read the orange unless close to the screen, and can not at all read the bottom copyright info.
  5. Hi, can any one tell me what the color codes are, for the top and bottom bar and the borders of each please. Thanks. [attachment deleted by admin]
  6. Hi, Latest Members - I would change the color of peoples names, as its hard to see Header - I think this should stretch with the rest of the site
  7. Hi, I have been using an access database at work to store our customers records, but I am looking at updating this to php/mysql, so what I wanted to know is say I click on add form, and a customer record comes up, what I want to do is as soon as I enter details into one input box, automatically enter that into the mysql database. Does anyone know of any tutorials for this? Thanks
  8. delete this please. i spelt the database wrong. sorry
  9. any help why this does not work please? doesnt echo anything. $conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql'); $dbname = 'selmgec'; $id = $_GET['id']; mysql_select_db($dbname); $query = "SELECT * FROM emails_members"; $result = mysql_query($query); while($row = mysql_fetch_array($result, MYSQL_ASSOC)) { $test = $row['members_first']; echo"$test <br>"; }
  10. http://www.javascriptkit.com/script/script2/jkmegamenu.shtml can someone help me please.. how can I add another menu onto this. thanks.
  11. Say I have a picture as my header which is 800 pixels wide and 50 pixels high. On this image are the title of the website on the left and some other writing on the right hand side. Is there a way of adding two different links, 1 for the title, 1 for the writing? Thanks
  12. Hi, I still can not get this to work... I have the following code... <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <link href="style.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="navigation"></div> <iframe src="http://www.bbc.co.uk/sport" frameborder="0"></iframe> </body> </html> css *{margin:0;padding:0;border:0;outline:0;height:100%;overflow-y:hidden;} html {height:100%;} body {height:100%;background:#262626;font:normal 100% "Lucida Grande", "Jamrul", Helvetica, Verdana, Arial, Tahoma, sans-serif;color:#555;} #navigation{height:7%;width:100%;border-bottom:1px solid white;background:black;} iframe{width:100%;height:93%;} now what i want to do is replace the height:7% in navigation with a fixed height but when i change to say 100px; the scroll bar of the iframe is not correct. you wil need to run the two codes to see. thanks
  13. Hi, I want to have a form, with no submit button, and when you enter the details, it will automatically enter this into a table the same as a database. Any ideas how to do this? tutorials? thanks in advance.
  14. yeah i meant like query the database then echo out like where(){ echo'<a href=''>file name here</a>'; echo'<a href=''>second file name here</a>'; }
  15. Hi, I want to have a file on my website that stores paperwork for jobs. so say i have paperwork_file and in this i will have say a file for each customer (using there id) 1_file 2_file 3_file then say for customer two (2_file) i would have these items in the file; inventory_item apprasil_item jobsheet_item if i wanted to be able to view these items can you read what items are in the file and be able to click on them to view them, or would i need to use a mysql database and <a> to do this? thanks in advance
  16. how do you write the subject in the correct php. thanks
  17. I want to track referrals, with 2 levels, 1. people you refer 2. people they refer Would I be best to include a field in the members table say referredby and then this will be the ID of the person who referred you, or would it be better to have a spearate table (referrals) referrals_id referrals_by referrals_of referrals_date like that. thanks
  18. SELECT * FROM users WHERE user_id NOT IN (SELECT blocked_blocked FROM blocked WHERE blocked_user=$session_id) ORDER BY user_name ASC I have worked out like that. I presume it is correct as it works.
  19. oh yes. damn sorry. thanks for the help. works fine. also if in the future i wanted to add say a filter as will, like display blocked_user from blocked where = $_SESSION['session_id']; how would I change the code.
  20. SQL query: SELECT * FROM users WHERE user_id NOT IN ( SELECT blocked_blocked FROM blocked ) ORDER BY user_name AS LIMIT 0 , 30 MySQL said: #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'AS LIMIT 0, 30' at line 1
  21. SELECT * FROM users WHERE user_id <> IN (SELECT blocked_blocked FROM block) ORDER BY user_name ASC i have tried that but does not work
  22. How do I select all users from users table where there users_id is not stored in the block table
  23. Hi, I am looking at creating a weekly calendar. The calendar will read from Monday - Sunday. Does anyone know of any examples or tutorails on how I can achieve this, as I have tried searching without no results.
  24. $running_day = date('w',mktime(0,0,0,$month,1,$year)); i changed to $running_day = date('w',mktime(0,0,0,$month,0,$year)); and it seems to have worked. http://www.allinthissite.co.uk/index.php?month=12&year=2009
  25. Hi, sorry I know that part. I should of put that. But know obviously once I have changed that then the first day of the month (say November 2009 selected) is starting off on Monday when in fact it should start on a Sunday. So I need to change the script to incorporate the header changes
×
×
  • 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.