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: *

  • Users: Programz8
  • Order by date
  1. Programz8

    colspan -- Puttin an image back together.

    Again I thank you for the help, but there are many reasons to slice an image up I don't really feel the need to tell them to you all but if you google it you can see some of the reasons I happen to want to animate some sections of my page and some portions of my page will use .jpg and other...
  2. Programz8

    colspan -- Puttin an image back together.

    Okay well please tell me what is wrong with this code? The result looks fine to me. <table id="Table_01" width="801" height="1601" border="0" cellpadding="0" cellspacing="0"> <tr> <td colspan="10"> <img src="http://www.jenomedia.com/clients/mj/images/mj3_41.jpg" width="800" height="171"...
  3. Programz8

    colspan -- Puttin an image back together.

    Vragabond, thanks for you help, but I'm trying to understand how the colspan and rowspan works. I know I can use css absolute positioning to move the pieces but I'm trying to learn how to do this another way can you point me to a tutorial or anything?
  4. Programz8

    colspan -- Puttin an image back together.

    I'm a beginner web designer and I'm used the CS3 slice tool to cut up an image. Now I'm trying to put the pieces back together and spaces keep getting in the way. How do I use colspan and rowspan to keep the pieces together? Here is a sample of the code and links to some images how do I get...
  5. Programz8

    Using PHP to link to another website.

    allow_url_fopen Off On The local value is off while the master value is ON thanks, Programz8
  6. Programz8

    Using PHP to link to another website.

    Unfotunately I am using a web host and I don't have access to the php.ini file :(
  7. Programz8

    Using PHP to link to another website.

    Greetings, I'm working on a website and I need one link to lead to another website within the existing browser with my banner and side link bar. Here is an example of the code. <?php // Start an if.......else block that checks for a a value for id if (!$a_id) { session_start(); } // Start...
  8. Programz8

    Simple image display Error in very simple code.

    Hmm I've got to go back to the basics I just can't seem to figure out why this code doesn't work??????? <?php session_start(); // Start an if block that checks the value of $valid if ($_SESSION[valid] != "yes") { session_register('valid'); } $db_name = "database"; $table_name =...
  9. Programz8

    Spacing, Colums and pages and sorting array images.

    Hi All, Can anyone give me some hints on how I can separate the array of images that is produced by the code below. I want to be able to control the spacing between images, the amount of columns and allow for more than one page if there are too many images in the array. I am also...
  10. Programz8

    Text being truncated / How to create multiple pages??

    How are you guys? I'm trying to display some images with text under them and for some reason only the first letter of text appears and the rest of the line is truncated? Does anyone know what the problem is? Also the image file name appears on the page. And finally does anyone know how to modify...
  11. Programz8

    Programming Logic Question

    No I didn't check that FAQ otherwise I wouldn't have posted this. lol. I did use the search but of course my search terms weren't exact and didn't pick up the FAQ. Thanks for the help, I appreciate every response I get. Programz.
  12. Programz8

    Programming Logic Question

    Hello Everyone, I have a question I don't have any code yet because I haven't begun to program this yet I'm just trying to get the logic down packed prior to starting. Here is my question: If I use an array to return a result set from a mysql database how can I display the results where I want...
  13. Programz8

    Error on line 37, HELP!!!

    I can't see your entire code and I'm only a beginner but do you have any OR statements in your code? I read an article somewhere about a T_Logical error being defined in the error such as T_Logical_OR or another example is a T_Logical_If Not sure if that will help or not but I'm trying to...
  14. Programz8

    Display specific images with mysql / PHP

    Jpadie that worked I had to add a semicolon to the debug line but that is fine. This is a system will do exactly what I want but I will need to make 3 modifications. 1) can I direct the new page that is generated to a specific page? 2) Can I add text under the images 3) How can I edit the...
  15. Programz8

    Display specific images with mysql / PHP

    Tell me about it i've been looking at this code since 8:00 AM, without knowing what to look for but hey atleast now I know a new method for error handling. The new error is. Mysql error: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the...
  16. Programz8

    Display specific images with mysql / PHP

    You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 1
  17. Programz8

    Display specific images with mysql / PHP

    JPadie I'm trying to implement your code and I have an error I can't find. It is an SQL error somewhere next to the ")" in line 1 ???????? Do you see the error? //attach to the database here $db_name = "slow"; $tablename = "Art"; $connection = @mysql_connect("localhost", "slow", "**") or die...
  18. Programz8

    Display specific images with mysql / PHP

    Thank you all for the help and suggestions, Vacunita yes you have it right that is what I wanted to do but I wanted to be able to choose which images to be output rather than just showing every image. With the help aquired from Vacunita, Jpadie and Bijae I should be able to combine some of your...
  19. Programz8

    Display specific images with mysql / PHP

    Yes I need to do 2 things as demonstrated by the code in my last post. 1) Be able to add multiple different images to a page instead of one. The problem is that if I do a select statement that pulls several records how can I display each record on the page where I want them? There has to be...

Part and Inventory Search

Back
Top