Search results

  1. B

    AJAX - Displaying a table

    My page retrieves data from a MySQL database. The PHP script outputs a string of values that should produce a table on the page. So far I have tried the following approaches without success 1. I get the PHP script to output the whole table as a response string to a request. Echo...
  2. B

    Page centering failed - CSS

    Sorry, I figured it out. A line moved in from somewhere.
  3. B

    Adding a border around an YouTube video

    Bump, Bump, Bump
  4. B

    Adding a border around an YouTube video

    I changed the question above, any ideas?
  5. B

    Adding a border around an YouTube video

    OK, I am changing this post completely as I was able to add a border around my videos. Now the question is different. Do you see any black horizontal or vertical bars between the video and the frame in the video on the bottom of this page...
  6. B

    Plug-ins in Explorer vs. Firefox

    I am asking this question just out of curiosity. After I included a plug-in on a page - an MP3 file, it required Windows media player in Win Explorer, but it needed the Apple Quicktime player in Firefox. I guess the different browsers make use of different additional software.
  7. B

    Photoshop question - background color

    Thank you Dave and Ronald ! I have never used the softbrush before. What I do is very similar to the steps Ronald described. I too shoot at midday out on the balcony:) Then I do "Autocolor correction", then "Adjust brightness and contrast". This last one may erase the light pensil...
  8. B

    Photoshop question - background color

    I have a few pencil drawings that are part of my website. The problem is, I do not know how to make them merge with the selected page color. I used the gradient tool, I adjusted the brightness and contrast etc,but there are always darker spots somewhere. (I took pictures of the the drawings...
  9. B

    Video processing software

    Thanks websonalized! I downloaded Windows Live Movie Maker. So far so good. Quality is better but files are bigger. Now the other problem I detected is my movies do not come out the same size in all browsers and systems. Sometimes there are two dark strips on the left and right side...
  10. B

    Video processing software

    I am currently using a free version of VideoPad to make short movies for YouTube. Unfortunately the free version does not let me create files with certain extensions and the only ones available are .avi and .wmv One of these formats results in very low quality images and the other one...
  11. B

    a Table question - CSS or JavaScript

    I have a table that is being loaded with values from a mySQL database. The problem I have is the table is visible when empty (row height>0) and even when loaded with values, the remaining empty rows are forming an empty space /margin on the bottom of the table. Here is the link...
  12. B

    Website Log In module

    I have a website with a forum and gallery modules. They both require seperate user registration. What I want to have is a website registration module that will provide access to the forum, gallery and some pages that require registration. Unfortunately I am not sure how to go about it...
  13. B

    Basic form processing questions

    Does this mean I have to first assign the values of my form boxes to JavaScript variables and then pass the values to the PHP processing file? Something like this: var form_field1 = document.getElementById('Form_field1').value; var form_field2 =...
  14. B

    Basic form processing questions

    Thank you Smoovo, It is still a little murky for me. Do you know of a site that may have explanations/examples. I did not use any JavaScript processing, and the example I found (which basically works) is only using a php file for storing data in mySQL by the method "Post". That example...
  15. B

    Basic form processing questions

    I have a form collecting data and inserting it into a mySQL table. The processing is done by a php file. My opening form tag looks like this: <form action="php-form-processor.php" method="post"> The problem I have is, after the data is processed and entered into mySQL, I end up looking...
  16. B

    Conditional CSS application on tables?

    Probably I am not doing this the right way so any ideas will be welcome. I have a table on a page, which is hard coded in HTML. It has 420 rows. The page is loaded from a database by an AJAX request. http://www.troutsalmonchar.com/Pages/STOCKS_LAKES_BC.php (to retrieve records please...
  17. B

    Quote marks in PHP

    After many unsuccessful attempts I found out the problem was with href: which was supposed to be href=. Of course I had to use the escape character "\" in a couple of spots as well
  18. B

    Quote marks in PHP

    I am generating a table in PHP that should have a reference to a JavaScript function. This is the line in question: echo "<td><a href:'javascript:GetFlyPic('".$row[F_Name]."')'>$row[F_Name]</a></td>"; The line above does not work, since the href in HTML should read...
  19. B

    Margins around images in IE problem

    Thanks smoovo, your observation on the div class was spot on! The only thing I am still puzzled with is the 3px margin appearing below images in IE6. The margin does not appear in IE8.
  20. B

    Margins around images in IE problem

    Thanks guys! That is great help! I didn't know the padding would increase the overall width of a div. The smart browsers were correcting my mistakes while IE made the mistakes obvious. Dave, where should I look to find the validation errors? I am sure I have some of them. IE must be #1 for...
Top