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

    File Upload with Filename

    Obviously this may need to be looped... if(isset($_POST['userfile'])) { // file sent by form $type=$HTTP_POST_FILES['userfile']['type']; $file_realname = trim($HTTP_POST_FILES['userfile']['name']); $uploaddir = "/var/web/upload/"; // upload directory if...
  2. chromonium

    Sessions in header redirects

    Alternatively you could just include the file, via: include("blahblah.inc");
  3. chromonium

    Selecting fields from tables with conditionals

    Hi, Is it possible to select fields in a table that for instance have a 'f' at the beginning, in the MySQL query, and not the others in the table? regards adam
  4. chromonium

    Session Problems, PHP

    Thanks
  5. chromonium

    Session Problems, PHP

    Hello everyone, Sessions on my server appear not to work, even though all settings are correct. For instance when i set a session there are no errors. But when i try to get the session variable back ie determine whether it exists (session_is_registered("UID") etc) the response is...
  6. chromonium

    PHP/MYSQL: Refer to column name when name is number

    Yeah thanks... I've now abandoned that system, instead calling them q1, q2 etc instead of 1, 2 etc, then stripping string of 'q' at other end. regards adam
  7. chromonium

    PHP/MYSQL: Refer to column name when name is number

    Hello everyone. When querying a MYSQL DB with PHP, how can you query a column ie [WHERE 1='test'] when the column/field name is itself a number? Thanks very much Many Regards adam www.fractalimpact.co.uk
  8. chromonium

    Username and Password Query:

    Dear Experts, I have a database in MySQL named main, and a table within that named 'data'. There are two field in this table named "username" and "pass". How can I cross check to see if the supplied variable correspond with the ones in the database. Thanks a lot Many...
  9. chromonium

    PHP Email Verification....

    Dear Experts, I have found a free script on the net to detect whether a specified email address is valid.... How it is missing some things: Character check, and splitting of the original email address into $host and $user, Your Help would be most appreciated in regards to this matter: this...
  10. chromonium

    PHP Script Help please?

    Dear Experts, I have found a free script on the net to detect whether a specified email address is valid.... How it is missing some things: Character check, and splitting of the original email address into $host and $user, Your Help would be most appreciated in regards to this matter: this...
  11. chromonium

    Can someone with a regular DIAL-UP internet connection check this out?

    well it loaded in about 9s for me, hope this helps regards adam
  12. chromonium

    Navigation Bar in Javascript

    Well, you can use IFRAMES instead then, that is the only other alternative appart from using PHP etc to recall and print scipting from separate file... <iframe width=500 height=500 src=&quot;navbar.htm&quot;></iframe> Inline frames can be used just like normal tables... regards adam
  13. chromonium

    Site Review please

    Thanks for pointing that out experts, Urr, well all I can say is that it was a malfunction on behalf of DW. Anyway the site is now completely up! Thanks for your cooperation, Many Regards, adam
  14. chromonium

    Site Review please

    Hi Experts, Please could you have a loook at my site? The URL is: www.fractalimpact.co.uk Many Regards adam
  15. chromonium

    site review please?

    Daer Experts, Could you guys please tell me what you think of my new site? It's located at: www.adamhadley.co.uk Many Regards Adam Hadley Fractal Impact fractalimpact@aol.com
  16. chromonium

    wait for a site beeing loaded

    or in the Javascript; window.onload=yourJs; adam hadley www.adamhadley.co.uk
  17. chromonium

    PHP on Windows?

    well if PHP is enabled it is probably assoc with the .php or .php3 documents throughout the site. there are practically no differences in the versions of PHP hosted by IIS(windows) or apache etc. to send email using PHP, you will probably need sendmail and/or another CGI prog to process the...
  18. chromonium

    Where are the submit a site pages for these search engines?

    try www.dmoz.org ,quite a few engines use the open directory hosted from here. regards adam
  19. chromonium

    analysing header() information in PHP

    dear experts, do any of you know whether it is possible to analse the header information given out by the clients browser in PHP4? This would be to set session vars to maintain site wide compatibility with older browsers. many regards adam

Part and Inventory Search

Back
Top