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 TouchToneTommy 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: andnos
  • Content: Threads
  • Order by date
  1. andnos

    autofill form fields

    I have form fields that are the same, with the same name/id, let's say that I have ten such fields. name: id=name name: id=name name: id=name name: id=name name: id=name name: id=name name: id=name name: id=name name: id=name and so forth, would I would like to do, is if the first "name"...
  2. andnos

    export into csv

    In MYSQL there's a functionality where I can export a select statement directly to a file... such as... SELECT * FROM table INTO OUTFILE '/tmp/testing.txt' FIELDS TERMINATED BY ',' ENCLOSED BY '"' LINES TERMINATED BY '\n' is there something similar to this in PostGreSQL?
  3. andnos

    Turn on variables from URL

    Hi, how do make it so that I don't have to use the global $_GET $_POST or $_REQUEST, but that the variables would be automatically created. Thanks AN
  4. andnos

    Three and less characters searching

    Hello, I've got a database that has boolean search on it, but from what I read and see from my results, MySQL ignores words with three or less characters, is there a way to force this? or how I can deal with having two and three character words searched? Any help appreciated. AN
  5. andnos

    DISTICT from two columns

    I have this SQL statement: SELECT DISTINCT co_name, id FROM user id is a unique number co_name has many values that are the same, I am looking for something that will select the first DISTINCT co_name and the id associated with it. The above SQL doesn't do this, because I think it selects...
  6. andnos

    Cross domain authentication with PHP and MySQL

    Hello.. Can anybody suggest the best way to authenticate users on two or more domains on a LAMP servers? Are there any tutorials out there that might help me with this? Thanks in advance
  7. andnos

    Reading Gmail with PHP

    Hello, has anybody had any success with accessing and download Gmail message using PHP? I'm trying to accomplish this, and any help would be appreciated. Thanks,
  8. andnos

    Setting cookies inside functions

    This might a weird question, but I'm able to set cookies OUTSIDE of a function, but not inside of a function. maybe somebody has come across this before. I'm using PHP 5.2.1 Here's the code that I have, the utoutside coookie sets fine, the utinside cookie DOES not set, I've never seen this...
  9. andnos

    LDAP authentication

    Hi, I have a web server, running ubuntu 6.06.1 apache2, and I would like to give access to some LDAP/AD groups. This would be done over the local network. So the people would just map a network drive on their windows machines and have access to do certain things if they are part of a group that...
  10. andnos

    Linux FTP User administration

    Hello, I've had great help here before and hopefully I can get some direction for my dilemma here: Issue: I need to create about 30 students (these are generic user accounts with R/W access) and 1 teacher on a linux server. I need to give them FTP access only, and each one will need a directory...
  11. andnos

    Select what is in one table and not in the other

    Hello, I have a dilema, I have two tables, the primary ID from the first is a foreign ID in the second. How can I structure a query to select only the records from the first table ONLY IF the primary ID of this table is not listed in the secondary table as a foreign key. thanks for any help Andy
  12. andnos

    how to determine difference between two time stamps

    I have two fields in a table timestart timestop and they have values such as 2006-05-11 12:07:18 2006-05-11 12:22:56 How to make a query that'll extract out the days/hours/minutes/seconds differences between the two dates? Any help would be appreciated.
  13. andnos

    Extracting data from Excel Using PHP

    Hello to all, I've had a lot of success with getting help from the forum, and I've come to another problem. Does anybody have an idea of how I would go about extracting data from a MS Excel document and putting it into a Mysql database using PHP. The putting into mysql I can handle, it's the...
  14. andnos

    Going from RAID to normal disk usage

    Hello, I bought a system from Dell and I had raid installed on the main C drive. This seemed like a good idea when I got the system (about 9 month ago) but now I notice that it's slowing everything down. Since I used my friends comp and mine, mine is much slower. My question is, how do I go...
  15. andnos

    Getting multiple fields from a POST form

    Hello, I have a dilemma that I've been working on for the last two days that I can't seem to solve, and this forum has be really helpful in the past: Here is what I'm trying to do: 1 - pull multiple fields from a database, these fields are all similar - got this done 2 - display it as a html...
  16. andnos

    Linux drive mapping?

    Ok, I'm only starting out with linux, so don't laugh if this is like "super easy". But is there a function in linux, that is like mapping a network drive as a local drive in windows? Thanks, Andy
  17. andnos

    Fetching an xml/rss file

    Hello, What I'd like to do is for instance take a feed like: http://www.icerocket.com/search?tab=blog&q=web+development&rss=1 and have the same thing appear on my local file, like: mydomain.com/icerocket-rss-webdevelopment.php Anybody know how I can do this? I tried the INCLUDE function...
  18. andnos

    getting error

    I'm trying to develop a wordpress plugin and i'm getting this error: Parse error: parse error, unexpected '<' in /home/futurity/public_html/template/wp-content/plugins/autolinker.php on line 103 anybody know if that is tied to one specific thing or should I post the code here?
  19. andnos

    Generic Form Mailer in asp

    Thanks for the help I got yesterday, today I'm back. I'm looking for a generic form mailer in asp. Where everything would be set in the HIDDEN fields of the form and passed to the script and the script would read it and email the contents of the script. I've used one in PHP before...
  20. andnos

    Need help, reading remote html files

    I'm new to ASP/VBScript and I need to open a remote web page and read the contents of that page and display it in my asp page, any ideas on how to do this best? Andy

Part and Inventory Search

Back
Top