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 Wanet Telecoms Ltd 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: bezierstek
  • Order by date
  1. bezierstek

    checkboxes appearing twice on dynamic select

    It's alright, I've sorted it now.
  2. bezierstek

    checkboxes appearing twice on dynamic select

    ...they have more than one category selected it doubles the entries from the database. the code I am using is here $interestsql=mysql_query("select * from interest order by interest"); while ($interestresult = mysql_fetch_array($interestsql)){ $propinterestsql=mysql_query("select *...
  3. bezierstek

    Linux internet kiosk

    definitely something like that yes. My client will want latest versions of flash etc. integrated into it so the users have a full browsing experience. File system wise they would need to be access only a usb memory stick if they insert one (does linux need different drivers for different...
  4. bezierstek

    Linux internet kiosk

    Hi, I have been asked to come up with a plan to make a Linux live cd to run an internet kiosk business. Basically I need to create a cd that will boot up linux to a specific page (language choice for system) that also has a coin machine on it for clients to pay for internet access. I am fine...
  5. bezierstek

    selecting dates ragardless of year

    Thanks for the help. I have managed to get it working by using a bit of a hack (using order desc and changing the period that started on the 8th so it overlapped the previous one). Not perfect certainly but it is working for teh moment. I'll have a look at your code though as it would be...
  6. bezierstek

    selecting dates ragardless of year

    ...is no month_day in mysql (at least not in the version I'm using). Is there any other way I could emulate this. I do have some other mysql select * from pricing WHERE (day(startdate)<=day('$currentdate') AND month(startdate)<=month('$currentdate')) AND (day(enddate)>=day('$currentdate') AND...
  7. bezierstek

    selecting dates ragardless of year

    That doesn't seem to work with the variable $currentdate. In php I am writing teh statement as follows. select * from pricing where extract(month_day from startdate) <= extract(month_day from '$currentdate') and extract(month_day from enddate) >= extract(month_day from '$currentdate') With...
  8. bezierstek

    selecting dates ragardless of year

    ...endate for each season in the same record. I suppose what I am really after is a way to structure a select statement something like this. select * from pricing where day and month of startdate <= day and month of currentdate and day and month of day and month of endate >= currentdate if...
  9. bezierstek

    problems with availability calendar

    Thanks for that. I can't believe I was going about it in such a longwinded way. Works great now. Richard
  10. bezierstek

    problems with availability calendar

    ...feature to generate_calendar() $day_names = array(); #generate all the day names according to the current locale for($n=0,$t=(3+$first_day)*86400; $n<7; $n++,$t+=86400) #January 4, 1970 was a Sunday $day_names[$n] = ucfirst(gmstrftime('%A',$t)); #%A means full textual day name...
  11. bezierstek

    ie6 placing white strip over divs

    Thanks for that. I'll have a look and see what I can do.
  12. bezierstek

    ie6 placing white strip over divs

    Hi, Can some one please have a look at http://beziers-in-english.com/testsites/index.htm and let me know why IE6 is placing a white stripe over the availability and contact divs and also the main content divs? It works great in IE7 and FF2 but I can't figure out why IE6 is messing up. Thanks...
  13. bezierstek

    Get link to span whole &lt;li&gt;

    Of Course!! I knew it was something simple. Thanks
  14. bezierstek

    Get link to span whole &lt;li&gt;

    Hi, I'm sure this has probably been dealt with before but I can't find it anywhere. I have a menu that is based in an unordered list, and want the link to span the whole <li>, not just the link text. I have a css rollover in the menu that needs to display the entire width of the <li>...
  15. bezierstek

    Freshdownload won't leave firefox alone

    ...http://sg.yahoo.com R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Default_Search_URL = http://sg.rd.yahoo.com/customize/ie/defaults/su/msgr8/*http://sg.search.yahoo.com/ R1 - HKLM\Software\Microsoft\Internet Explorer\Main,Search Bar =...
  16. bezierstek

    Freshdownload won't leave firefox alone

    No, not installed as an addon. Still not got rid of it, at the moment I am using ietab when I want to download as it lets me then.
  17. bezierstek

    Create pdf from dynamically produced html

    Hi, I need to create a brochure from dynamically created html code. Does any one know the easiest way. I have seen some scripts that are supposed to do it but can't get hem to work. I need to insert photos and tables and some css styling in the pdf. Thanks, Richard
  18. bezierstek

    have hidden div show containing form when link is clicked

    Thanks for all that guys. What I want in addition to that is for the form to be called from an external page (easy enough), but I also want any processing to done there and not to mess up the original page (eg, email submission, search etc.
  19. bezierstek

    have hidden div show containing form when link is clicked

    Hi, I have just seen a great contact form on a site that basically just displays a hidden div when a link is clicked and has a form contained in it and want to replicate the effect (for a contact page and site searches). Basically when the link is clicked then a div box appears over the webpage...
  20. bezierstek

    have hidden div show containing form when link is clicked

    Sorry about that, will post in the right forum

Part and Inventory Search

Back
Top