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!

Recent content by cantfindausername

  1. cantfindausername

    can't open a file with CGI

    Thanks Kevin, I didn't know that, but will be saving that for sure!!
  2. cantfindausername

    can't open a file with CGI

    well after a lot of faffing around I've finally got it to work. Thanks again and Happy christmas! Ant
  3. cantfindausername

    can't open a file with CGI

    I did wonder about this. The relative path I'm using is fine on a link, but guess perl needs the full path instead. I've not got the hosting details yet so guess I'll have to chase them up from the owner and then I'll be able to see what the full path really is. THanks for your help! Ant
  4. cantfindausername

    can't open a file with CGI

    ok, I have a website that I'm trying to use as much CGI on as possible. THe basic idea behind the page I'm having trouble with is that I have reports in a folder: /reports/file1.txt and so on. And I want to open the file and format it all via the CGI. I am passing a parameter into the CGI...
  5. cantfindausername

    Quick one regarding <dd> list styles

    I couldn't get the list style to apply on IE6 or FF(2.0.0.11) The solution I used was... CSS .bullet dd { font:14px Verdana; color:#000000; text-decoration:none; background-image: url(images/bullet.gif); background-repeat: no-repeat; background-position: 0 .25em...
  6. cantfindausername

    Quick one regarding <dd> list styles

    Thanks ca8msm, would that be a property that I put in a dd class?
  7. cantfindausername

    Quick one regarding <dd> list styles

    I have been trawling the net but haven't found a confirmed answer to my question. Can I put a bullet point "list style" on my <dd> list items?? Many thanks, Anthony
  8. cantfindausername

    cgi URL param driving me mad. Please help!

    Not sure what the error was. Couldn't get anything from the log. I've got to the bottom of it though after trawling google and sites all day. It seemed I was missing the: use CGI 'param'; - it all now seems to be working. Will play around a bit more now. SO for search purposes the solution was...
  9. cantfindausername

    cgi URL param driving me mad. Please help!

    Hi, For some reason I can't get a param that I'm passing in the URL to work, and its driving me nuts. I have a "cgi-bin/test.cgi?selection=R33" URL that I am trying to get to work. When I manually define $selection = "R33"; it works fine. When I try to pass R33 as a parameter on the URL (as...
  10. cantfindausername

    Populating a table with data from SQL Query

    Hi, Been told to post this here rather than the xhtml forum, so here goes... I'm building a website for someone and they would like table that can be populated by a specific visitors request. My initial thoughs were that I'd be able to build a database in SQL to store the table data and then...
  11. cantfindausername

    Table population from SQL database

    Ok thanks. Didn't realise it was Server Side code. I'll head over there and re post. Thanks.
  12. cantfindausername

    Table population from SQL database

    Hi, I'm building a website for someone and they would like table that can be populated by a specific visitors request. My initial thoughs were that I'd be able to build a database in SQL to store the table data and then submit queries dependant on what the visitor wants to see - like they...
  13. cantfindausername

    help with hashes

    Thanks Miller. The example I was using above was the simplest version of what I was actually trying to do, but it was all sorted in the end. Good to know there are things like this though. Ant
  14. cantfindausername

    help with hashes

    Thanks for clearing those things up for me! Hopefully this will give me the tools to go forward get over the hurdles I've got around this functionality. Anthony
  15. cantfindausername

    help with hashes

    Me again... I have a hash and I'm trying to access the keys using a specific value. Is it possible?? The simplest example I can give would be the following #!/usr/bin/perl -w %data = ( 'Jan' => 31, 'Feb' => 28, 'Mar' => 31, 'Apr' => 30); $val = "31"; foreach $month (keys %data) { if...

Part and Inventory Search

Back
Top