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 gkittelson 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: *

  • Users: Louth
  • Order by date
  1. Louth

    Passing Variables From Selects

    I have tried this but it is giving me errors. How exactly would you modify the existing code?
  2. Louth

    Passing Variables From Selects

    Could anybody help me with the following problem. I am trying to pass a value from a selectbox to a url which refreshes the page. I am having a problem passing the value. The code is set out as follows: if(!isset($skill)) { <table cellspacing='0' cellpadding='3' width='90%' border='0'> <form...
  3. Louth

    Multiple Selects

    I have the following code for selecting multiple values from a select box. However when I take the $meetings variable it only outputs the last value chosen. How do I gather all the values? <td width=150><font size=2>Meetings</font></td> <td><select multiple name=meetings>"...
  4. Louth

    Quotes Are Difficult

    It's OK I just figured out the problem. I had spaces after the commas in the URL. I had a feeling it was something simple. Always is. Cheers for the help anyway.
  5. Louth

    Quotes Are Difficult

    I know single quotes are used instead of double quotes in PHP. I have tried to use single quotes instead. It seems to be JavaScript that has a problem with them though. Besides if I try to use single quotes the link just stops after the end of the first single quote pair and doesn't include the...
  6. Louth

    Quotes Are Difficult

    Could somebody please tell me how I could solve the following problem. I have created some JavaScript to create a pop-up window which looks like this: <script language='javascript'> var popWin = null var winCount = 0 var winName = 'popWin' function openPopWin(winURL, winWidth, winHeight...
  7. Louth

    Empty Cells

    I'm having a problem with the tables in my database. Any fields which are empty should be diplayed as a cell with a border. However when I have empty fields an empty cell is displayed with no border. Does anybody know how I could fix this problem? Example code: <tr> <td...
  8. Louth

    MD5 problems

    Could anybody help with this md5 problem because it's driving me crazy. The following line takes input from a form and enters it into the database like so @mysql_query("UPDATE db_ulp SET login='$name', password=md5('$pwd') where login='$user'"); In the form the field looks like this: <tr>...
  9. Louth

    Redirecting a Page

    Alright guys, Would anybody be able to help me with the following problem? I am trying to create a page which performs a number of SQL queries and then redirects to another page depending on the results of these queries. In other words I am trying to create a pure PHP page which never appears...
  10. Louth

    syntax error

    Cheers man but that's still not working. I can't figure out what the problem is. I've tried every possible way around it I can and I still can't figure it out
  11. Louth

    syntax error

    Can somebody tell me why this statement keeps giving me an error? There seems to be a problem with the forward slash but even when I put it into quotes I am getting an error. "UPDATE db_ulp SET trainees/trainee_add=0 WHERE user_id=2";
  12. Louth

    Cascading Menu-White Space

    this is the style sheet: BODY { } .menuBar { POSITION: relative; BACKGROUND-COLOR: transparent; TEXT-ALIGN: center } .Bar { BORDER: blue 1px outset; PADDING-RIGHT: 15px; PADDING-LEFT: 10px; FLOAT: left; WIDTH: 100px; CURSOR: hand; LINE-HEIGHT: 20px...
  13. Louth

    Cascading Menu-White Space

    I have designed a cascading menu using DIV tags and a stylesheet. However, I am getting some white space when the sub-menus pop-up. Does anybody know why this happens? Could you tell me how to prevent it? Cheers Aidan
  14. Louth

    Problem with Date and Time functions

    Cheers man. I actually figured out another way of doing it using PHP's time function. Anyway do you know of anywhere I could find some code to implement a calendar in PHP. I'm trying to design one but there should be lots of freeware solutions around. Do you know of any good ones.
  15. Louth

    Problem with Date and Time functions

    I have been having problems using date and time functions in PHP. I am trying to design a schedule with a Calendar. I tried to use the following line of code to output the current month i.e. February. The line of code I have used is this : $month = mysql_query(&quot;select monthname(curdate(...
  16. Louth

    Creating A Schedule

    I'm trying to create a schedule area on my website where people can schedule meetings etc. Has anybody had any experience designing such things who could help me?

Part and Inventory Search

Back
Top