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

    F12 won't work

    Hi All I am using dreamweaver as my development tool, which was working fine but when I go and press F12 to preview my pages I keep getting the following message. I have done a re-install and still I keep getting this message. Can someone please help this has stopped my development. Don't know...
  2. gokeeffe

    Dreamweaver question Please help

    -------------------------------------------------------------------------------- Not sure where to post this question. I am using dreamweaver as my development tool, which was working fine but when I go and press F12 to preview my pages I keep getting the following message. I have done a...
  3. gokeeffe

    Please Help CSS question gone crazy !

    Hi I would really like to know the answer to the folowing question. I have a 3 column layout as follows #rightside{ position:absolute; width:130px; top:104px; right:0px; background-color:#FFF; display:block; border: 1px solid black; } #leftside { position:absolute; top:104; left:0; width...
  4. gokeeffe

    How to pass an array through a hidden field

    I am trying to pass an array through a hidden field in a form I have on my confirmation page, all of my other variable pass through fine but I can't get the array to pass through to the reponse page ----------------------- Step 3 Page ----------------------------------- This is where i have...
  5. gokeeffe

    Form validation problem

    What I want to do is the following I have a form with 8 fields,all of these fields are optional but if one of the fields is filled in ie. the email address field I want to validate the email address. Hence I use this code // Check for a email address if (eregi...
  6. gokeeffe

    Can you have more than one id in a select statement

    How come the below select statement will work but when I add a second id to the select statement I keep getting an ambiguous error for that id. Is it not possible to select more than 2 id's in a select statement. Regards Graham ---------------------------------- Works...
  7. gokeeffe

    Not sure of the concept

    How do I do the following: I have a search results page that displays results eg Name Address Country Interest Subject Level What I want to do is add a field called More Details which will be a hyperlink to another page which will display more specific details of that user. For...
  8. gokeeffe

    I think this is a basic question.

    How do I do the following: I have a search results page that displays results eg Name Address Country Interest Subject Level What I want to do is add a field called More Details which will be a hyperlink to another page which will display more specific details of that user. For...
  9. gokeeffe

    Delete from middle of array how?

    How do I do the following I have a mutidimensional array, for example it might contain 6 different pieces of information $_SESSION['grind_array'][] = array( 'Interest' => $_SESSION['Interest'], 'Subject' => $_SESSION['Subject']...
  10. gokeeffe

    Simple array question

    Hi How can I get the index from the following code // Set the array $_SESSION['grind_array'][] = array('Interest' => $_SESSION['Interest'], 'Subject' => $_SESSION['Subject'], 'Level' =>...
  11. gokeeffe

    Simple array question

    Hi I have the following code that I am using to store values in an array, but is there anyway that I can count the number of items in the array without using the counter that I have, I mean is there any index style array command. Also: Does any one know any good tutorials on php arrays...
  12. gokeeffe

    Need Help Bigtime !

    As I am coding using php, i don't know where to go with the following problem. I keep getting this error HTTP 404 - File not found Internet Information Services I have tryed to fix it but I can't find the solution, i can surf the web fine but when I go to test my web pages on my machine...
  13. gokeeffe

    Please Help desperate and tired

    I keep getting this problem hence i can no longer test my web sites HTTP 404 - File not found Internet Information Services Tried to uninstall and re-install but it didn't work I googled it too but found no valid solution At my wits end please help
  14. gokeeffe

    UPDATE Problem should be easy

    can anyone see why the below code is not working. I've echo'd out county and user_id and they come out fine but when I try to use the UPDATE statement it doesn't work, i keep getting failure. Please help. Regards $j = $_SESSION['county']; echo "county = $j"; $a =...
  15. gokeeffe

    I think this is easy but can't figure out !

    Hi, My problem is this I have an insert statement that works fine and all the relevant info goes into my database. The first two fields are id_premium & user_id. Once this info is entered the next thing i want to do is select the id_premium where user_id = whatever but i keep getting Resource...
  16. gokeeffe

    simple checkbox question

    Hi I am trying to get the $array_number variable into the input box but i cannot manage it i keep getting this from the echo statement $key => $array_number instead of getting $key => 0 $key => 1 etc My question is really can you do this value="$array_number" **************** Code...
  17. gokeeffe

    Checkbox Problem Please Help!

    I have a foreach statement which is used to echo an array with 3 variables. Each time a row in the array is echo’d a checkbox is also echo’d. I want to use this checkbox to allow the users to delete a particular row, so if they want to delete the third row they will check this box an then hit a...
  18. gokeeffe

    index array how?

    Hi Here is my array which works find $_SESSION['grind_array'][] = array ( 'interest' => $_SESSION['interest'], 'subject' => $_SESSION['subject'] 'level' => $_SESSION['level']); My problem is this how do I get the array index number, as I will need this number...
  19. gokeeffe

    Professional Web Images

    Hi, Does anyone know a good website where I can get professional web images for my sites, I don't mind if I have too pay as I find it extremly difficult to find appropriate images for my sites. Regards Graham
  20. gokeeffe

    Simple array question

    Hi, Is it possible to do the following for example could I change the array below from method one to method two. Method One $address_book = array ( array(first_name => "John", last_name => "Davis", phone_number => "0876006529"), array(first_name => "Graham", last_name => "Okeeffe"...

Part and Inventory Search

Back
Top