Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. jeellison

    button bar links are not in the right place in IE.

    Hi Guys, I put the css file through a validator and there were like 35 errors. These were all just not having px after values. I changed this and added the strict doctype and all is working like a dream now. Thanks for all the input. Best Regards James Ellison
  2. jeellison

    button bar links are not in the right place in IE.

    Ah, I see. How do I know what doc type to add please? If I add the one as recommended <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> my site looks like this in all browsers...
  3. jeellison

    button bar links are not in the right place in IE.

    So after designing my site testing in Firefox and Crome where it looks sweet, there are a few problems in IE. The first being the button bar which is just text ul and li positioned over the right part of the background image. But in IE it is too far to the left. Any ideas please? Please see...
  4. jeellison

    Repeating background image vertically and horizontally

    Ah, yes, how simple. Thanks you very much. James
  5. jeellison

    Repeating background image vertically and horizontally

    Hi Everyone, Just learning CSS and have spet too long on this simple task already. I want a fading background to be displayed so there is no white space on larger higher resolution screens. I have created a 1px width and 581 high pixel which needs to epeat across the screen horizontally and...
  6. jeellison

    accessing data from 2 sql tables on 1 page

    All working now thanks, you really helped. I was changing the wrong query. This is what i now working : $fres = mysql_query("SELECT * FROM {$prefix}projects, {$prefix}users WHERE project_status='O' AND {$prefix}users.user_acct_status='A' AND {$prefix}users.user_id =...
  7. jeellison

    accessing data from 2 sql tables on 1 page

    Hi again, No not getting a error and Yes they do match. There is no user_id in Projects, only in Users. Best Regards James
  8. jeellison

    accessing data from 2 sql tables on 1 page

    Hello Phil, Thank you again for your help. SO i now have : $rt = mysql_query("SELECT COUNT(*) as total FROM {$prefix}projects, {$prefix}users WHERE project_status='O' AND {$prefix}projects.project_user_id = {$prefix}users.user_id") user_id in the users table is the same as project_user_id...
  9. jeellison

    accessing data from 2 sql tables on 1 page

    Sorry about the lack of info, im struggling here im afraid. The user_city field exist only in the {$prefix}users table. BUT i want to call this in the projects page too. Best Regards James
  10. jeellison

    accessing data from 2 sql tables on 1 page

    Hello, The user page works and calls user_city fine. It is in the Projects page where this doesnt work. <code> <span class=smalltext><b>Category :</b> $f_art_row[project_cat_names].<b> City :</b> $f_art_row[user_city]</span> </code> Thanks James
  11. jeellison

    accessing data from 2 sql tables on 1 page

    Hello All, I have two pages which each display data from 2 different tables. Table projects on 1 page and users on the other. Now id like data from them both on the same page. Below is the code from each page. This is the User page : include "./init.php"; $sscript = ""...
  12. jeellison

    accessing dta from 2 tables in 1 page.

    Hello All, I have two pages which each display data from 2 different tables. Table projects on 1 page and users on the other. Now id like data from them both on the same page. Below is the code from each page. This is the User page : include "./init.php"; $sscript = ""...
  13. jeellison

    asp mail - if drop down box equals something

    Good day all. Sorry to be a pest but I have created a asp mail form. Now how can I have it so that if a option is selected from a drop down box then more options (ie checkboxes) are then shown? EG, if PC Desktop is selected from the drop down box then some check boxes appear with options of...
  14. jeellison

    MYSQL to MSSQL

    Hi, I have this working now but am unsure how. No code has changed but I just rebuilt the user DB. Thanks James
  15. jeellison

    MYSQL to MSSQL

    Hello, Thanks for the reply, her si all the code: <% Dim Recordset1 Dim Recordset1_cmd Dim Recordset1_numRows Set Recordset1_cmd = Server.CreateObject ("ADODB.Command") Recordset1_cmd.ActiveConnection = MM_tynans_mysql_STRING Recordset1_cmd.CommandText = "SELECT * FROM...
  16. jeellison

    MYSQL to MSSQL

    Hello all, I had the following code working fine using a mysql database and now I have changed it to MSSQL it is not displaying the data? Does anybody have any ideas why please? <% If UCase(Recordset1.Fields.Item("engineer_name").Value) = UCase(session("varuser")) Then %>...
  17. jeellison

    disabling fields

    Sweet As george. I posted without seeing your new variable answer and it works great without the <p> element. Again thank you soo much. James
  18. jeellison

    disabling fields

    It all seems to work apart from the actual writing of the text on its own now. If I take out the type="hidden" then it all works apart from then it is in a text field. Must be something simple. Thanks James
  19. jeellison

    disabling fields

    Hi, YES, that is what ive been trying to do but it still doesnt seem to work. Your code does not write the data as text when the else is executed- It is just blank. im using <% If UCase(Recordset1.Fields.Item("engineer_name").Value) = UCase(session("varuser")) Then %> <textarea...
  20. jeellison

    disabling fields

    Or is it here? <%If UCase(Recordset1.Fields.Item("second_engineer").Value) = UCase(session("varuser")) Then %> <textarea name="secondary_engineers_notes" id="secondary_engineers_notes" cols="40" rows="5" value><%=(Recordset1.Fields.Item("secondary_engineers_notes").Value)%></textarea>...

Part and Inventory Search

Back
Top