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 SkipVought 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. JamesCliff

    Script to stop spam

    Hi all, I am running a red hat linux 9 in console mode for my server. I have kernel 2.6.18.1 which works great. However i have one problem, and thats with my email server. I am using sendmail to run multiple email acounts on my server for different users. However the client accounts are been...
  2. JamesCliff

    Upload Script Gives Error

    sorry... i get this error message wen trying to upload big files: "There was an error uploading the file, please try again!" Is there not a piece of code i can use to try and troubleshoot the error?
  3. JamesCliff

    Upload Script Gives Error

    Hi all, Im using the following upload script to upload files into a directory on my web server. The script also adds a database entry at the same time for the filename. However if i upload a file over about 800k i get an error saying the upload failed. This is the script im using: <?php...
  4. JamesCliff

    Problem with my edit script - please help!

    ok thanks mate :) Sorted it now
  5. JamesCliff

    Problem with my edit script - please help!

    Hi, Im using the following script to edit rows in my database: <?php require_once("config/db.php"); include("FCKeditor/fckeditor.php") ; $connection = mysql_connect($host, $user, $pass) or die ("Unable to connect!"); mysql_select_db($db) or die ("Unable to select database!"); $id...
  6. JamesCliff

    search script

    thanks m8 sorted it now :)
  7. JamesCliff

    search script

    ok guys, Ive made the following script: <table width="100%" align="center"> <tr> <td width="80%" height="96" valign="top"><div align="center"> <p>&nbsp; </p> <p><font color="#4C4C4C" size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Search...
  8. JamesCliff

    search script

    mysql database m8 Anyone ideas? What moe info do you need? ill supply it. Thanks Jim
  9. JamesCliff

    search script

    ok well...... I would be searching the database "briskfire" and the following tables and fields within them: brisk_content : pagename, linkname, title, content brisk_downloads : pagename, linkname, title, description brisk_downloads_url : dl_url, linkname, title, description I dont know what...
  10. JamesCliff

    search script

    Hi all, Im creating a search script for my site. I have multiple tables which all contain different fields. I want one search box which i can type a keyword or keywords into which is then passed to a query which will search all the tables and there columns and display any row with one of the...
  11. JamesCliff

    Edit php script corrupting database row content integrity

    Ive got a php edit script which allows me to alter the contents of a table row. Within this table row i have <script> code. This script code was fine and worked before i created the php edit script. Now every time i click update on the edit php script the \ (backslashes) within the <script> code...
  12. JamesCliff

    mysql populated listbox

    yeh, sorted it now m8. I dont know what i was thinking lol. I put the listbox inside a form and submitted the form to the same script and used a conditional section like you suggested when the form is submitted. This then updates the links. It works fine Thanks Jim www.briskfire.com
  13. JamesCliff

    Selected listbox id value included in link - client side scripting

    Ok, i am very very new to javascripting. Infact ive never done it in my life. I am only attempting it now because i need client side scripting which php cannot do. Basiclly is it possible to integrate java and php together? I ask this because this is my scenario: I have a php script which...
  14. JamesCliff

    mysql populated listbox

    wait a min m8.... Im just thinking. So your saying it isnt possible to store the id of a selected row in a listbox into a variable? Omg.... im doomed. Ive been designing a CMS in php and mysql all along thinking that i could store a values id into a variable when selected in a listbox. I could...
  15. JamesCliff

    mysql populated listbox

    Ok thanks alot mate. Ill have alook there
  16. JamesCliff

    mysql populated listbox

    Im using the following code to populate a listbox from a mysql table. I want it so when a value is selected from the listbox its ID is passed to a variable and this variable is used in a link to post the ID to another page. I can get the list to populate and i can select a value from the listbox...
  17. JamesCliff

    Search multiple mysql tables

    ah rite yeh, i sort of see where your coming from with this. Anyone else got anything to add?
  18. JamesCliff

    Search multiple mysql tables

    Hi all, Im making a simple search script for my site. I was going to try and incorporate the following simple code: $query = "select * FROM table WHERE something like '%$keyword%' or something like '%$keyword%'"; $result = mysql_query($query) or die(mysql_error()); However i want to search...
  19. JamesCliff

    Site Management System help

    Thanks for all the help guys.... ive got a basic system sorted that does exactly what i want. I can have as many sub sections as i want for each sub section and so on. See the results for yourself at www.briskfire.com/new You will need to sign up. Tell me what you think of the code below. I...
  20. JamesCliff

    Site Management System help

    ok thanks alot m8 :) I will do that and see how it goes :) Matt, im trying to get only the sub sections displayed for each particular section. So when a link for a section/sub-section is clicked, then only the sub sections for that section are displayed. Therefore i could use the URL to help...

Part and Inventory Search

Back
Top