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

    javascript-dom help needed

    Hi... this is what I've got: an xml file that's altered with javascript-dom commands threw a html form. I've also got a xsl file to go with the xml file to present it and to show some calculations of the content. example: -xml- <product> <price>10</price> </product> <product>...
  2. tranquillo

    how do I get javascript variables into DOM-&gt;XML?

    Hi... I'm trying to make a form for adding elements into a xml file using javascript and DOM. I've tested the script on w3schools.com and most of the code works just the way I want it to. the problem is getting the value of a textfield from the form into the DOM part. is there some DOM syntax...
  3. tranquillo

    XML-DOM vs. Asp-Database

    I'm at the start of a project and we're looking at different opions for solutions... the project is to create a webbportal. at the start there's going to be somewhere around 400 members with their own profile where they'll be able to show 10-15 pictures of &quot;products&quot; for sale or for...
  4. tranquillo

    don't want html tags in my forum

    Hi... I've built a forum/guestbook thing for a website. it's verry basic. it simply writes text into a database and then shows it on a new page. the problem is that if someone writes a html tag such as a <img src...> the image will show... I don'w want that... can someone help me with this...
  5. tranquillo

    blobs and timestamps

    Hi... I'm using php and MySQL to do a website, and for the news section I'd like to know the best way to make a timestamp in the database... is there some kind of function in MySQL I can use that automaticly adds the current date/time? (I'm not using UNIX if that matters). and I'd like to know...
  6. tranquillo

    Missing row

    hey... I must be doing something wrong... I just don't know what... to me it don't seem logical at all... the code that is pressented below is to list gigs for a couple of musicians... it's ordered by date and for some reason it refuses to show one of the rows... why...
  7. tranquillo

    missing rows

    hey... I must be doing something wrong... I just don't know what... to me it don't seem logical at all... the code that is pressented below is to list gigs for a couple of musicians... it's ordered by date and for some reason it refuses to show one row... why...
  8. tranquillo

    creating foreign key in MySql

    Hi... I wanna know how to create a foreign key in mysql.. I tried this alter table arbetsplats modify klubbID int foreign key; it says I have an error in my syntax... and I guess I do. -stefan
  9. tranquillo

    using php to getting a sql result on the same page...

    here we go again.. ;) ---------------------------- ---------------------------- <?php $db = mysql_connect(&quot;localhost&quot;, &quot;root&quot;); mysql_select_db(&quot;seko&quot;,$db); $kid = $_POST[&quot;kid&quot;]; $namn = $_POST[&quot;namn&quot;]; $gadr = $_POST[&quot;gadr&quot;]...
  10. tranquillo

    &quot;supplied argument is not a valid&quot;

    Hi... I'd be really glad if someone would like to take a look at my code here and tell me what's wrong with the &quot;arbetsplats&quot; function. everything else works fine, and that function is the same as the others... I just can't see what's wrong... --------------------------- this is the...
  11. tranquillo

    a list in php/mysql

    Hi... I need some help with a list that I wanna do in php. I want two lists of events with dates that are devided in coming and previous events. so I'd need a php-tagg that lists all events in a table where date<now or date>now. and I'd like the background to be different on every second row...
  12. tranquillo

    sort decreasing by id?

    hi.. I want to list some data from a mysql database and I want it to start with the latest entry.. the &quot;id&quot; is auto increasing so I thought it would be easy to just sort it decreasing by &quot;id&quot;... but I don't understand how I do this... I just need a simple sql query. select...

Part and Inventory Search

Back
Top