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. clivehenderson

    Unwanted space between divs

    Hello I've got 4 divs that line up nicely but when I enter anything in one of the divs (#content Wrapper) an extra space line is inserted between this div and the next one which I can't seem to get around. I've tried differnet float options and changing the overflow setting on the outer div...
  2. clivehenderson

    Problem positioning divs within div

    Hi Hope someone can help I've got a container div with padding I'm trying to place further divs within it so that I get a nice border but the last div does not display properly. It either leaves too much space at the end of crosses over the container. Inthis example It works reasonably weel...
  3. clivehenderson

    Div position rendering in different browsers

    Hi I had similar problems but have found the following helped me. It resets' the code to the same starting points for IE Firefox etc. Hope this helps Regards Clive <style type="text/css"> <!-- html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0...
  4. clivehenderson

    How to test null recordset value

    Hi I've just managed to create a joined recordset with a mixture of values and nulls in the recordset fields. This was my intention and I now need to be able to test if field has a null value null value for example if (@$row_rsCourt1['bookingID'] = null) { ?> <span...
  5. clivehenderson

    Left Join query kepps returning empty data

    Can anyone help me with this join problem please? I have 2 tables and I'm trying to retrieve all the records from one table plus any related records from the second table returning null values if there are no matching records in the second table. The LEFT Join sounds ideal to do this...
  6. clivehenderson

    InnerJoin not giving null values

    Hi Can anyone help me with this join problem please? I have 2 tables and I'm trying o retrieve all the records from one table plus any related records from the second table returning null values if there are no matching records in the second table. The LEFT Join sounds ideal to do this...
  7. clivehenderson

    What causes page to shift on some browsers but not others?

    Hi I used to have similar problems until I found out about this 'reset code' in css. Basically you place this code at the beginning of your css file and it makes sure all browsers treat your alignments in a similar Give it a try! Kind regards Clive html, body, div, span, applet, object...
  8. clivehenderson

    how to Calendar Events THis Week

    Many Many thanks for this. Giving me the working code as well, a real bonus!!! Best wishes Clive
  9. clivehenderson

    how to Calendar Events THis Week

    Hi I’d like to be able to convert a date retrieved in a recordset to a date this week e.g a date last month might be a Thursday and I’d like to convert it to the thursday date this week. Does anyone know a clever/simply way to do this? Been racking my brains for days on this . Any help or...
  10. clivehenderson

    ampersand in code failing W3C validation

    Hi I use the code below for bookmarking a page and it works well However it fails W3C validation checks on the line with opera with: You used an unescaped ampersand "&": this may be valid in some contexts, but it is recommended to use "&amp;", which is always safe. Can anyone suggest a change...
  11. clivehenderson

    Newvbie Definition

    Hi I'm just starting to use CSS divisions and have managed to layout my webpages without tables.(using dreamweaver so not really handcoding)) Id like certain divisions/setctions to have different H1 and H2 settings but can't figure out how to do it. Can anyone help please or point me to a...
  12. clivehenderson

    Random field values in recordset

    Hi I'd like to set a field in every record of a dataset to a random value. I have a php function which returns the random value. so far I've had help to setup an update statement in a string which does the job but only produces a random number when the string is composed and copies the same...
  13. clivehenderson

    Update loop problem

    I have an update statement that updates a field in each record in a recordset to a random value using a function. The problem is that it creates a random number for the first receord and carries on using it for all the others. Iss there a way of forcing the statement to call the function...
  14. clivehenderson

    UPdate command error quotes?

    Many Many Thanks for the advice It was spot on! I've meddling with this for a couple of days and would never havesolved it wiothout your help. Best wishes Clive
  15. clivehenderson

    UPdate command error quotes?

    Hi, hope someone can help If I assign a function value to a field it works OK $_test = tNG_generateRandomString(16); but when I try and use it in an update statement, it returns function not found. UPDATE tblMembers2 SET tblMembers2.mSecKey= tNG_generateRandomString(16) WHERE...
  16. clivehenderson

    Form Multiple radio buttons

    Hi Thanks for the reply. My form field is frmVoteOPtion but it is in a repeat region. so there could be say 10 options set. I'd like to be able to intrrogate all the posted values. Regards Clive
  17. clivehenderson

    Form Multiple radio buttons

    Hi I've got form with a radio button (part of a repeat region)Repeat region) Can anyone tell me how to refer to them in the receiving page. Do they come thru as an array or something? Any help or pointers appreciated Many thanks Clive
  18. clivehenderson

    site search engines in dreamweaver

    Hello Brian, Nice design A database solution is probably best to aim at. e.g.php/MYSQL if you are linux hosted 1.Firstly you could put all the search criteria into a form with the seach image as the button. 2. when the form is submitted it goes to a page with recordsets that search the data...
  19. clivehenderson

    Image gallery site

    Hi one way to do this would be to use a database. It is relatively simple to display thumnail images which when clicked would load a page with the expanded image.. You would need only one page to display the expaned image as the link from the thumbnail would include the identity of the image to...
  20. clivehenderson

    Productivity &amp; Quality...

    you sound as though you are on a sticky wicket here. 1. You need to have the acceptance criteria written down at the outset. The notion of zero defects is not feasible. Consider categorising defects into severity level impacts e.g 1 to 5 with 1 being system malfunction down to 5 being cosmetic...

Part and Inventory Search

Back
Top