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

    Basic js - document.write to val(

    Hi, I have the following: ..... document.write(hours + minutes + day + month + year) jQuery(document).ready(function(){ jQuery('#purchase_order').val('xxxxxxxx'); .... I want to populate the xxxxxx with the result of the document.write I.e. I am generating a variable which is time & date...
  2. amanxman

    mySQL Statement to update field

    Hey, Background: Standard mySQL database, on php with myphpAdmin running. I have a field "urlPath", which contains a value, say "/example/imagexx.jpg" I then have another field "urlPath2" which is blank at moment. This second field needs to have the value based on the first, for example...
  3. amanxman

    JS clash

    Hey, I have two js scripts which seem to clash (i.e. when both running, they don't work). They are for seperate functions... I've narrowed the cause in script at to: Array.prototype.call = function() { var args = arguments; this.each(function(f){ f.apply(this, args) }); } and this is...
  4. amanxman

    Remote database connection

    Hey, I have a website powered by mySQL, written in .NET - with Microsoft SQL Server Management Studio Express as the SQL management software. I am looking to develop an add on application for this website in PHP - so would make it on a seperate server (php) - but this new application will need...
  5. amanxman

    Option list from one table

    Hi, I have the following say; tblProducts: Name Categories Price tblCategories: Name IDNumber at the moment, no relationships built tblProducts "categories" requires the IDNumbers of the categories in tblCategories - there are mutiple IDNumbers for each product, and they need to be...
  6. amanxman

    passing information from 1 form to another

    Hi, I have two forms, the second of which is in the html of the .cgi which results from the first form. Ie they fill in the first form, which is on a .html file. Clicking submit sends me an email and takes them to thankyou.cgi. This thankyou.cgi file has a second form on, through which the...
  7. amanxman

    strip carriage returns & linefeed characters from form field

    Hi everyone, I have a little problem with a form to email which is getting spammed, and the solution, I've been told is to strip carriage returns (\r) and linefeed characters (\n) from form fields in my cgi scripts - with the following code: $field =~ s/\r/ /g; $field =~ s/\n/ /g; for each...
  8. amanxman

    Spam/Junk from Form

    #1 Today, 02:13 PM amanxman amanxman is online now Newbie Join Date: Mar 2006 Posts: 1 Spam/Junk Form Output Hi all, Firstly, I apologise if this isn't the right place to post this - but I couldnt find anywhere else suitable!! In the last 24 hours, we've got heaps (30+) spammy junky...

Part and Inventory Search

Back
Top