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 IamaSherpa 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. salinasj

    implode() query

    need a little more info... are you using the file as a "text-file-based database" ? if so, are you basically adding just 1 record, or multiple records... one on each line? if it is as a table, why r u not using sql instead of a text file? if it is just 1 record in that file, just...
  2. salinasj

    Hi All, How can I assign the val

    that is correct. if you are wanting to call it as a function, you would definitely have to specify the GLOBALs or specify the parameters to use & make sure they are returned properly. (sorry, didn't see he was wanting to use it as a function.)
  3. salinasj

    Hi All, How can I assign the val

    $myVal = $row['DBValue']; print &quot;<input type=\&quot;text\&quot; name=\&quot;field\&quot; value=\&quot;$myVal\&quot;>&quot;; // // if textarea // print &quot;<textarea name=\&quot;myfield\&quot;>$myVal</textarea>&quot;;
  4. salinasj

    How to protect a directory ?

    I do the same thing. The only way to do that, is to make sure you have index.php in the directory and make sure that file is calling your auth.h file as an inclusion. That doesn't really protect the whole directory, but they'd have to know the physical names of the files in the directory to...
  5. salinasj

    Referrencing NAME=ARRAY[NAME] in Javascript

    how 'bout trying this instead: $sql=&quot;SELECT * FROM contacts&quot;; $res=mysql_query($sql,$con) or die(&quot;SQL: $sql&quot;); While ($row=mysql_fetch_array($res)) { $pr_name_first=$row['pr_name_first']; // print &quot;<input type=\&quot;text\&quot;&quot;; print &quot...

Part and Inventory Search

Back
Top